Changeset 51403 for trunk/tests/phpunit/tests/filters.php
- Timestamp:
- 07/11/2021 12:41:48 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/filters.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/filters.php
r48937 r51403 232 232 // Just in case we don't trust assertSame(). 233 233 $obj->foo = true; 234 $this->assert False( empty( $args[0][0]->foo ));234 $this->assertNotEmpty( $args[0][0]->foo ); 235 235 } 236 236 … … 255 255 // Just in case we don't trust assertSame(). 256 256 $obj->foo = true; 257 $this->assert False( empty( $args[0][1]->foo ));257 $this->assertNotEmpty( $args[0][1]->foo ); 258 258 259 259 $args = $b->get_args(); … … 261 261 // Just in case we don't trust assertSame(). 262 262 $obj->foo = true; 263 $this->assert False( empty( $args[0][1]->foo ));263 $this->assertNotEmpty( $args[0][1]->foo ); 264 264 265 265 }
Note: See TracChangeset
for help on using the changeset viewer.