Skip to content

Commit

Permalink
Fix PathParametersTests to assert on non-nullable Guid's
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhelle committed Mar 22, 2023
1 parent 0283771 commit 78175db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Refitter.Tests/PathParametersTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ public async Task Generates_Path_Parameters()
{
var generateCode = await GenerateCode();
using var scope = new AssertionScope();
generateCode.Should().Contain("Guid? orderId");
generateCode.Should().Contain("Guid? orderItemId");
generateCode.Should().Contain("Guid orderId");
generateCode.Should().Contain("Guid orderItemId");
}

[Fact]
Expand Down

0 comments on commit 78175db

Please sign in to comment.