We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47fff15 commit 9723456Copy full SHA for 9723456
tests/MarkupAssertionsTraitTest.php
@@ -34,10 +34,10 @@ public function testAssertContainsSelector($selector)
34
35
public function testAssertContainsWithMultipleMatches()
36
{
37
- $test = new TestCaseWithMarkupAssertions;
38
- $html = '<a href="#home">Home</a> | <a href="#about">About</a> | <a href="#contact">Contact</a>';
39
-
40
- $this->testcase->assertContainsSelector('a', $html);
+ $this->testcase->assertContainsSelector(
+ 'a',
+ '<a href="#home">Home</a> | <a href="#about">About</a> | <a href="#contact">Contact</a>'
+ );
41
}
42
43
/**
0 commit comments