diff options
Diffstat (limited to 'tests/MySqlShimTest.php')
-rw-r--r-- | tests/MySqlShimTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/MySqlShimTest.php b/tests/MySqlShimTest.php index a39ac1f..701cabd 100644 --- a/tests/MySqlShimTest.php +++ b/tests/MySqlShimTest.php @@ -1024,12 +1024,12 @@ class MySqlShimTest extends \Yoast\PHPUnitPolyfills\TestCases\TestCase 9 => array( 'name' => 'nine', 'max_length' => 3, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 0, 'numeric' => 0, 'blob' => 0, - 'type' => 'char', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 10 => array( 'name' => 'ten', 'max_length' => 3, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 0, 'numeric' => 0, 'blob' => 0, - 'type' => 'char', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 11 => array( 'name' => 'eleven', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, |