Changeset 48937 for trunk/tests/phpunit/tests/xmlrpc/wp/newComment.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/newComment.php
r47122 r48937 42 42 43 43 $this->assertIXRError( $result ); 44 $this->assert Equals( 403, $result->code );44 $this->assertSame( 403, $result->code ); 45 45 } 46 46 … … 53 53 ); 54 54 55 $this->assert Equals( 'closed', $post->comment_status );55 $this->assertSame( 'closed', $post->comment_status ); 56 56 57 57 $result = $this->myxmlrpcserver->wp_newComment( … … 68 68 69 69 $this->assertIXRError( $result ); 70 $this->assert Equals( 403, $result->code );70 $this->assertSame( 403, $result->code ); 71 71 } 72 72 … … 93 93 94 94 $this->assertIXRError( $result ); 95 $this->assert Equals( 403, $result->code );95 $this->assertSame( 403, $result->code ); 96 96 } 97 97
Note: See TracChangeset
for help on using the changeset viewer.