Changeset 52328 for trunk/tests/phpunit/tests/http/http.php
- Timestamp:
- 12/06/2021 09:29:00 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/http/http.php
r52244 r52328 310 310 ); 311 311 312 $this->assertInstanceOf( ' WpOrg\Requests\Cookie\Jar', $cookie_jar );312 $this->assertInstanceOf( 'Requests_Cookie_Jar', $cookie_jar ); 313 313 314 314 foreach ( array_keys( $cookies ) as $cookie ) { … … 316 316 $this->assertArrayNotHasKey( $cookie, $cookie_jar ); 317 317 } else { 318 $this->assertInstanceOf( ' WpOrg\Requests\Cookie', $cookie_jar[ $cookie ] );318 $this->assertInstanceOf( 'Requests_Cookie', $cookie_jar[ $cookie ] ); 319 319 } 320 320 }
Note: See TracChangeset
for help on using the changeset viewer.