Changeset 58108 for trunk/tests/phpunit/tests/http/base.php
- Timestamp:
- 05/06/2024 06:39:15 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/http/base.php
r56548 r58108 220 220 221 221 $this->skipTestOnTimeout( $res ); 222 $this->assertNotWPError( $res ); 222 223 $this->assertSame( 'PASS', wp_remote_retrieve_body( $res ) ); 223 224 $this->assertNotEmpty( $res['headers']['location'] ); … … 357 358 358 359 $this->skipTestOnTimeout( $res ); 360 $this->assertNotWPError( $res ); 359 361 $this->assertSame( $method, wp_remote_retrieve_body( $res ) ); 360 362 } … … 407 409 408 410 $this->skipTestOnTimeout( $res ); 411 $this->assertNotWPError( $res ); 409 412 $this->assertSame( 'PASS', wp_remote_retrieve_body( $res ) ); 410 413 } … … 448 451 449 452 $this->skipTestOnTimeout( $res ); 453 $this->assertNotWPError( $res ); 450 454 $this->assertSame( 'PASS', wp_remote_retrieve_body( $res ) ); 451 455 }
Note: See TracChangeset
for help on using the changeset viewer.