Skip to content

Commit

Permalink
Use syntax that's compatible with build server's C# version
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersAbel committed Jan 17, 2020
1 parent 217c3e0 commit 1c203c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Owin.Tests/CommandResultExtensionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void CommandResultExtensions_Apply_NullCheck_CommandResult()
[TestMethod]
public void CommandResultExtensions_Apply_NullCheck_OwinContext()
{
Action a = () => new CommandResult().Apply(context:null, dataProtector:null, true);
Action a = () => new CommandResult().Apply(context:null, dataProtector:null, emitSameSiteNone:true);

a.Should().Throw<ArgumentNullException>().And.ParamName.Should().Be("context");
}
Expand Down

0 comments on commit 1c203c8

Please sign in to comment.