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 3a2ade7 commit eafd80aCopy full SHA for eafd80a
tests/UnifiedSpecTests/UnifiedSpecTest.php
@@ -13,6 +13,7 @@
13
use function array_flip;
14
use function glob;
15
use function str_starts_with;
16
+use function strtolower;
17
18
/**
19
* Unified test format spec tests.
@@ -135,7 +136,7 @@ public function setUp(): void
135
136
}
137
138
foreach (self::$incompleteTestGroups as $testGroup => $reason) {
- if (str_starts_with($this->dataDescription(), $testGroup)) {
139
+ if (str_starts_with(strtolower($this->dataDescription()), strtolower($testGroup))) {
140
$this->markTestIncomplete($reason);
141
142
0 commit comments