Skip to content
Snippets Groups Projects
Commit 1af5a134 authored by Wouter Wolters's avatar Wouter Wolters
Browse files

[BUGFIX] Fix missing single quotes in SchemaMigratorTest

Change-Id: I452252096e39d8986dfa414016011d16f33523b8
Resolves: #49072
Related: #41344
Releases: 6.2
Reviewed-on: https://review.typo3.org/21371
Reviewed-by: Wouter Wolters
Tested-by: Wouter Wolters
parent f720c969
Branches
Tags
No related merge requests found
......@@ -89,7 +89,7 @@ class SchemaMigratorTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
)
)
),
diff_currentValues => array(
'diff_currentValues' => array(
'tx_foo' => array(
'fields' => array(
'foo' => 'varchar(255) DEFAULT \'0\''
......@@ -127,7 +127,7 @@ class SchemaMigratorTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
array(
'extra' => array(),
'diff' => array(),
diff_currentValues => NULL
'diff_currentValues' => NULL
)
);
}
......@@ -158,7 +158,7 @@ class SchemaMigratorTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
array(
'extra' => array(),
'diff' => array(),
diff_currentValues => NULL
'diff_currentValues' => NULL
)
);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment