Skip to content

Commit

Permalink
OXDEV-7456 Fix the initial values of collections in fixtures
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Fedurtsya <[email protected]>
  • Loading branch information
Sieg committed Dec 4, 2023
1 parent 9fc2699 commit eac35e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Fixtures/testdemodata_ce.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ REPLACE INTO `oxconfig` (`OXID`, `OXSHOPID`, `OXMODULE`, `OXVARNAME`, `OXVARTYPE
('changeBoolSetting', 1, 'theme:awesomeTheme', 'boolSettingEditable', 'bool', '', '2023-10-11 19:21:11'),
('changeStringSetting', 1, 'theme:awesomeTheme', 'stringSettingEditable', 'str', '', '2023-10-11 19:21:11'),
('changeSelectSetting', 1, 'theme:awesomeTheme', 'selectSettingEditable', 'select', '', '2023-10-11 19:21:11'),
('changeArraySetting', 1, 'theme:awesomeTheme', 'arraySettingEditable', 'arr', '', '2023-10-11 19:21:11'),
('changeAssocArraySetting', 1, 'theme:awesomeTheme', 'assocArraySettingEditable', 'aarr', '', '2023-10-11 19:21:11');
('changeArraySetting', 1, 'theme:awesomeTheme', 'arraySettingEditable', 'arr', 'a:0:{}', '2023-10-11 19:21:11'),
('changeAssocArraySetting', 1, 'theme:awesomeTheme', 'assocArraySettingEditable', 'aarr', 'a:0:{}', '2023-10-11 19:21:11');
4 changes: 2 additions & 2 deletions tests/Fixtures/testdemodata_ee.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ REPLACE INTO `oxconfig` (`OXID`, `OXSHOPID`, `OXMODULE`, `OXVARNAME`, `OXVARTYPE
('changeBoolSetting', 1, 'theme:awesomeTheme', 'boolSettingEditable', 'bool', '', '2023-10-11 19:21:11'),
('changeStringSetting', 1, 'theme:awesomeTheme', 'stringSettingEditable', 'str', '', '2023-10-11 19:21:11'),
('changeSelectSetting', 1, 'theme:awesomeTheme', 'selectSettingEditable', 'select', '', '2023-10-11 19:21:11'),
('changeArraySetting', 1, 'theme:awesomeTheme', 'arraySettingEditable', 'arr', '', '2023-10-11 19:21:11'),
('changeAssocArraySetting', 1, 'theme:awesomeTheme', 'assocArraySettingEditable', 'aarr', '', '2023-10-11 19:21:11');
('changeArraySetting', 1, 'theme:awesomeTheme', 'arraySettingEditable', 'arr', 'a:0:{}', '2023-10-11 19:21:11'),
('changeAssocArraySetting', 1, 'theme:awesomeTheme', 'assocArraySettingEditable', 'aarr', 'a:0:{}', '2023-10-11 19:21:11');

0 comments on commit eac35e1

Please sign in to comment.