Skip to content

Commit 6da2692

Browse files
author
Justin Skiles
committed
Fixed compile issue with ambiguous constructor
1 parent 5e10726 commit 6da2692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Steam.UnitTests/SteamWebInterfaceFactoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void Constructor_Should_Fail_If_Empty_Key()
4444
[Fact]
4545
public void Constructor_Should_Fail_If_Null_Key()
4646
{
47-
Assert.Throws<ArgumentNullException>(() => new SteamWebInterfaceFactory(null));
47+
Assert.Throws<ArgumentNullException>(() => new SteamWebInterfaceFactory(steamWebApiKey: null));
4848
}
4949

5050
[Fact]

0 commit comments

Comments
 (0)