Changeset 34532
- Timestamp:
- 09/25/2015 04:31:52 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/site.php
r34173 r34532 113 113 $this->assertNotEmpty( $table_fields ); 114 114 115 // And the table should not be empty, unless commentmeta or links.115 // And the table should not be empty, unless commentmeta, termmeta, or links. 116 116 $result = $wpdb->get_results( "SELECT * FROM $prefix$table LIMIT 1" ); 117 if ( 'commentmeta' == $table || ' links' == $table ) {117 if ( 'commentmeta' == $table || 'termmeta' == $table || 'links' == $table ) { 118 118 $this->assertEmpty( $result ); 119 119 } else {
Note: See TracChangeset
for help on using the changeset viewer.