aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/extension/fixtures/extensions.xml3
-rw-r--r--tests/group_positions/fixtures/group_positions.xml4
-rw-r--r--tests/template/template_inheritance_test.php2
3 files changed, 8 insertions, 1 deletions
diff --git a/tests/extension/fixtures/extensions.xml b/tests/extension/fixtures/extensions.xml
index 65cb71c7a4..6eb6fd11a5 100644
--- a/tests/extension/fixtures/extensions.xml
+++ b/tests/extension/fixtures/extensions.xml
@@ -3,13 +3,16 @@
<table name="phpbb_ext">
<column>ext_name</column>
<column>ext_active</column>
+ <column>ext_state</column>
<row>
<value>foo</value>
<value>1</value>
+ <value></value>
</row>
<row>
<value>vendor/moo</value>
<value>0</value>
+ <value></value>
</row>
</table>
</dataset>
diff --git a/tests/group_positions/fixtures/group_positions.xml b/tests/group_positions/fixtures/group_positions.xml
index 55b1c2e08d..00ea18fe4f 100644
--- a/tests/group_positions/fixtures/group_positions.xml
+++ b/tests/group_positions/fixtures/group_positions.xml
@@ -4,20 +4,24 @@
<column>group_id</column>
<column>group_teampage</column>
<column>group_legend</column>
+ <column>group_desc</column>
<row>
<value>1</value>
<value>0</value>
<value>0</value>
+ <value></value>
</row>
<row>
<value>2</value>
<value>1</value>
<value>0</value>
+ <value></value>
</row>
<row>
<value>3</value>
<value>2</value>
<value>1</value>
+ <value></value>
</row>
</table>
</dataset>
diff --git a/tests/template/template_inheritance_test.php b/tests/template/template_inheritance_test.php
index 3a03de6427..b637166ba6 100644
--- a/tests/template/template_inheritance_test.php
+++ b/tests/template/template_inheritance_test.php
@@ -71,6 +71,6 @@ class phpbb_template_template_inheritance_test extends phpbb_template_template_t
$this->template_locator = new phpbb_template_locator();
$this->template_provider = new phpbb_template_path_provider();
$this->template = new phpbb_template($phpbb_root_path, $phpEx, $config, $user, $this->template_locator, $this->template_provider);
- $this->template->set_custom_template($this->template_path, 'tests', $this->parent_template_path);
+ $this->template->set_custom_template($this->template_path, 'tests', $this->parent_template_path, 'parent');
}
}