diff --git a/tests/dbal/fixtures/styles.xml b/tests/dbal/fixtures/styles.xml
index 36fc22a48f..dcbe39d3b0 100644
--- a/tests/dbal/fixtures/styles.xml
+++ b/tests/dbal/fixtures/styles.xml
@@ -5,31 +5,39 @@
style_name
style_copyright
style_active
- template_id
- theme_id
+ style_path
+ bbcode_bitfield
+ style_parent_id
+ style_parent_tree
1
prosilver
© phpBB Group
1
- 1
- 1
+ prosilver
+ kNg=
+ 0
+
2
prosilver2
© phpBB Group
0
- 2
- 2
+ prosilver2
+ kNg=
+ 0
+
3
Prosilver1
© phpBB Group
0
- 3
- 3
+ prosilver1
+ kNg=
+ 1
+ prosilver
diff --git a/tests/dbal/order_lower_test.php b/tests/dbal/order_lower_test.php
index eaf5211508..e16c0c20ee 100644
--- a/tests/dbal/order_lower_test.php
+++ b/tests/dbal/order_lower_test.php
@@ -33,24 +33,30 @@ class phpbb_dbal_order_lower_test extends phpbb_database_test_case
'style_name' => 'prosilver',
'style_copyright' => '© phpBB Group',
'style_active' => 1,
- 'template_id' => 1,
- 'theme_id' => 1,
+ 'style_path' => 'prosilver',
+ 'bbcode_bitfield' => 'kNg=',
+ 'style_parent_id' => 0,
+ 'style_parent_tree' => '',
),
array(
'style_id' => 3,
'style_name' => 'Prosilver1',
'style_copyright' => '© phpBB Group',
'style_active' => 0,
- 'template_id' => 3,
- 'theme_id' => 3,
+ 'style_path' => 'prosilver1',
+ 'bbcode_bitfield' => 'kNg=',
+ 'style_parent_id' => 1,
+ 'style_parent_tree' => 'prosilver',
),
array(
'style_id' => 2,
'style_name' => 'prosilver2',
'style_copyright' => '© phpBB Group',
'style_active' => 0,
- 'template_id' => 2,
- 'theme_id' => 2,
+ 'style_path' => 'prosilver2',
+ 'bbcode_bitfield' => 'kNg=',
+ 'style_parent_id' => 0,
+ 'style_parent_tree' => '',
)
),
$db->sql_fetchrowset($result)