Changeset 58054
- Timestamp:
- 04/29/2024 03:38:39 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment/wpComment.php
r54704 r58054 34 34 $found = WP_Comment::get_instance( (string) self::$comment_id ); 35 35 36 $this->assert Equals(self::$comment_id, $found->comment_ID );36 $this->assertSame( (string) self::$comment_id, $found->comment_ID ); 37 37 } 38 38 … … 61 61 $found = WP_Comment::get_instance( 1.0 ); 62 62 63 $this->assert Equals( 1, $found->comment_ID );63 $this->assertSame( '1', $found->comment_ID ); 64 64 } 65 65 }
Note: See TracChangeset
for help on using the changeset viewer.