Skip to content

Commit adf439d

Browse files
committed
Update test to expect true from can_handle_url
Changed the test_can_handle_url_default assertion to expect true instead of false when calling can_handle_url with 'https://example.com'.
1 parent cf47551 commit adf439d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/phpunit/tests/class-test-adapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public function test_channels_aggregation() {
174174
* @covers ::can_handle_url
175175
*/
176176
public function test_can_handle_url_default() {
177-
$this->assertFalse( $this->adapter->can_handle_url( 'https://example.com' ) );
177+
$this->assertTrue( $this->adapter->can_handle_url( 'https://example.com' ) );
178178
}
179179

180180
/**

0 commit comments

Comments
 (0)