Changeset 48937 for trunk/tests/phpunit/tests/option/wpLoadAllOptions.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/wpLoadAllOptions.php
r46586 r48937 34 34 35 35 // Database has not been hit. 36 $this->assert Equals( $before, $after );36 $this->assertSame( $before, $after ); 37 37 } 38 38 … … 51 51 52 52 // Database has been hit. 53 $this->assert Equals( $before + 1, $after );53 $this->assertSame( $before + 1, $after ); 54 54 } 55 55 … … 77 77 78 78 // Filter was called. 79 $this->assert Equals( $this->alloptions, $all_options );79 $this->assertSame( $this->alloptions, $all_options ); 80 80 } 81 81
Note: See TracChangeset
for help on using the changeset viewer.