- Timestamp:
- 08/13/2022 08:58:51 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/core/class-bp-user-query.php
r13184 r13314 75 75 ) ); 76 76 77 $this->assert Contains( '0 = 1', $q->uid_clauses['where'] );77 $this->assertStringContainsString( '0 = 1', $q->uid_clauses['where'] ); 78 78 } 79 79 … … 86 86 ) ); 87 87 88 $this->assert NotContains( '0 = 1', $q->uid_clauses['where'] );88 $this->assertStringNotContainsString( '0 = 1', $q->uid_clauses['where'] ); 89 89 } 90 90
Note: See TracChangeset
for help on using the changeset viewer.