Skip to content

Commit eeb4180

Browse files
committed
nits: fix typo
1 parent 578fdf4 commit eeb4180

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Filter/TagFilterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ public function testFilterFeatureWithTaggedExamples(): void
282282
/**
283283
* @phpstan-return list<array{string, list<string>, bool}>
284284
*/
285-
public static function provderMatchWithNoPrefixInFilter(): array
285+
public static function providerMatchWithNoPrefixInFilter(): array
286286
{
287287
// This is officially unsupported (but potentially widespread) use of a filter expression that does not
288288
// contain the `@` prefix. Behat's documentation shows that the `@` prefix should be provided - however Behat's
@@ -319,7 +319,7 @@ public static function provderMatchWithNoPrefixInFilter(): array
319319
/**
320320
* @phpstan-param list<string> $tags
321321
*/
322-
#[DataProvider('provderMatchWithNoPrefixInFilter')]
322+
#[DataProvider('providerMatchWithNoPrefixInFilter')]
323323
public function testItMatchesWhenFilterDoesNotContainPrefix(string $filter, array $tags, bool $expect): void
324324
{
325325
$feature = new FeatureNode(null, null, $tags, null, [], '', '', null, 1);

0 commit comments

Comments
 (0)