Skip to content

Commit

Permalink
Refactor method name in DecodingTest
Browse files Browse the repository at this point in the history
The method name reference in a dependency annotation has been updated in DecodingTest.php. This change will ensure that the method call within the annotation correctly matches the named method, allowing the test to execute as expected.
  • Loading branch information
Spomky committed Apr 12, 2024
1 parent 692d1f9 commit 299053c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Functional/DecodingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static function theDecoderServiceIsAvailable(): void

#[Test]
#[DataProvider('getInputs')]
#[Depends('testTheDecoderServiceIsAvailable')]
#[Depends('theDecoderServiceIsAvailable')]
public static function theDecoderCanDecodeInputs(string $data, string $expectedNormalizedValue): void
{
//Given
Expand Down

0 comments on commit 299053c

Please sign in to comment.