Skip to content

Commit

Permalink
style: updated formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
samtrion committed Aug 26, 2024
1 parent 880e9c7 commit 2d880e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static TheoryData<IEnumerable<string>> ThrowIfNullOrEmptyEnumerableData
{
Array.Empty<string>(),
new List<string>(),
new HashSet<string>()
new HashSet<string>(),
};

return data;
Expand All @@ -109,7 +109,7 @@ public static TheoryData<IEnumerable<string>> ThrowIfNullOrEmptyEnumerableWithDa
new[] { "argument" },
#pragma warning restore CA1861 // Avoid constant arrays as arguments
new List<string> { "argument" },
new HashSet<string> { "argument" }
new HashSet<string> { "argument" },
};

return data;
Expand Down

0 comments on commit 2d880e2

Please sign in to comment.