Skip to content

Commit

Permalink
chore: Refactor AllSuppliersSearchExpression method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelmathot committed Jun 4, 2024
1 parent 7a98692 commit 3d0f1ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public static IEnumerable<object[]> AllSuppliersTestsData
}
}

[Theory, MemberData(nameof(AllSuppliersTestsData), DisableDiscoveryEnumeration = true)]
public async Task AllSuppliersSearchExpression(ISupplier supplier, string file)
[Theory, MemberData("AllSuppliersTestsData", DisableDiscoveryEnumeration = true)]
public async Task AllSuppliersSearchExpression(string key, ISupplier supplier, string file)
{
string json = File.ReadAllText(file);
JObject jObject = JObject.Parse(json);
Expand Down

0 comments on commit 3d0f1ff

Please sign in to comment.