Changeset 48952 for trunk/tests/phpunit/tests/date/query.php
- Timestamp:
- 09/07/2020 03:12:17 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/date/query.php
r48937 r48952 525 525 526 526 $message = "Expected {$expected}, got {$found}"; 527 $this->assertEquals ( strtotime( $expected ), strtotime( $found ), $message, 10);527 $this->assertEqualsWithDelta( strtotime( $expected ), strtotime( $found ), 10, $message ); 528 528 } 529 529 … … 560 560 561 561 $message = "Expected {$expected}, got {$found}"; 562 $this->assertEquals ( strtotime( $expected ), strtotime( $found ), $message, 10);562 $this->assertEqualsWithDelta( strtotime( $expected ), strtotime( $found ), 10, $message ); 563 563 564 564 } … … 584 584 585 585 $message = "Expected {$expected}, got {$found}"; 586 $this->assertEquals ( strtotime( $expected ), strtotime( $found ), $message, 10);586 $this->assertEqualsWithDelta( strtotime( $expected ), strtotime( $found ), 10, $message ); 587 587 } 588 588
Note: See TracChangeset
for help on using the changeset viewer.