Changeset 52248 for trunk/tests/phpunit/tests/db/charset.php
- Timestamp:
- 11/25/2021 07:39:31 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/db/charset.php
r52010 r52248 768 768 769 769 $charset = self::$_wpdb->get_table_charset( $table ); 770 $this->assertSame( $ charset, $expected_charset );770 $this->assertSame( $expected_charset, $charset ); 771 771 772 772 $charset = self::$_wpdb->get_table_charset( strtoupper( $table ) ); 773 $this->assertSame( $ charset, $expected_charset );773 $this->assertSame( $expected_charset, $charset ); 774 774 775 775 self::$_wpdb->query( $drop );
Note: See TracChangeset
for help on using the changeset viewer.