Skip to content

Commit

Permalink
Use self::assert methods (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell authored Feb 27, 2023
1 parent c5635b4 commit 72fbb7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/PageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,6 @@ public function testFindTarget(): void
$page->navigate($this->sitePath('bigLayout.html'))->waitForNavigation();

$target = $browser->findTarget('page', 'bigLayout.html');
$this->assertSame('bigLayout.html', $target->getTargetInfo('title'));
self::assertSame('bigLayout.html', $target->getTargetInfo('title'));
}
}

0 comments on commit 72fbb7a

Please sign in to comment.