Changeset 30699 for trunk/tests/phpunit/tests/db/charset.php
- Timestamp:
- 12/02/2014 02:59:36 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/db/charset.php
r30631 r30699 308 308 $this->assertEquals( $charset, $expected_charset ); 309 309 310 $charset = self::$_wpdb->get_table_charset( strtoupper( $table ) ); 311 $this->assertEquals( $charset, $expected_charset ); 312 310 313 self::$_wpdb->query( $drop ); 311 314 } … … 344 347 foreach ( $expected_charset as $column => $charset ) { 345 348 $this->assertEquals( $charset, self::$_wpdb->get_col_charset( $table, $column ) ); 349 $this->assertEquals( $charset, self::$_wpdb->get_col_charset( strtoupper( $table ), strtoupper( $column ) ) ); 346 350 } 347 351
Note: See TracChangeset
for help on using the changeset viewer.