Skip to content

Commit da28590

Browse files
authored
Apply fixes from StyleCI (#752)
1 parent 62d8f73 commit da28590

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Concerns/MakesAssertions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ public function assertAttribute($selector, $attribute, $value)
585585
*/
586586
public function assertDataAttribute($selector, $attribute, $value)
587587
{
588-
return $this->assertAttribute($selector, 'data-' . $attribute, $value);
588+
return $this->assertAttribute($selector, 'data-'.$attribute, $value);
589589
}
590590

591591
/**
@@ -598,7 +598,7 @@ public function assertDataAttribute($selector, $attribute, $value)
598598
*/
599599
public function assertAriaAttribute($selector, $attribute, $value)
600600
{
601-
return $this->assertAttribute($selector, 'aria-' . $attribute, $value);
601+
return $this->assertAttribute($selector, 'aria-'.$attribute, $value);
602602
}
603603

604604
/**

tests/MakesAssertionsTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function test_assert_attribute()
7474
$this->fail();
7575
} catch (ExpectationFailedException $e) {
7676
$this->assertStringContainsString(
77-
"Did not see expected attribute [bar] within element [Foo].",
77+
'Did not see expected attribute [bar] within element [Foo].',
7878
$e->getMessage()
7979
);
8080
}
@@ -111,7 +111,7 @@ public function test_assert_data_attribute()
111111
$this->fail();
112112
} catch (ExpectationFailedException $e) {
113113
$this->assertStringContainsString(
114-
"Did not see expected attribute [data-bar] within element [Foo].",
114+
'Did not see expected attribute [data-bar] within element [Foo].',
115115
$e->getMessage()
116116
);
117117
}
@@ -148,7 +148,7 @@ public function test_assert_aria_attribute()
148148
$this->fail();
149149
} catch (ExpectationFailedException $e) {
150150
$this->assertStringContainsString(
151-
"Did not see expected attribute [aria-bar] within element [Foo].",
151+
'Did not see expected attribute [aria-bar] within element [Foo].',
152152
$e->getMessage()
153153
);
154154
}

0 commit comments

Comments
 (0)