Skip to content

Commit

Permalink
Update FluentEchoTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Oct 30, 2021
1 parent 4f14df5 commit 597d7af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/FluentRest.Tests/FluentEchoTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
Expand Down Expand Up @@ -243,8 +243,8 @@ public async void EchoPostData()
Assert.Equal("application/json; charset=utf-8", contentType);

Assert.True(result.Json.HasValue);
Assert.Equal(user.Id, result.Json.Value.GetProperty("Id").GetInt64());
Assert.Equal(user.FirstName, result.Json.Value.GetProperty("FirstName").GetString());
Assert.Equal(user.Id, result.Json.Value.GetProperty("id").GetInt64());
Assert.Equal(user.FirstName, result.Json.Value.GetProperty("firstName").GetString());
}

[Fact]
Expand Down Expand Up @@ -425,4 +425,4 @@ private static IFluentClient CreateClient()
return fluentClient;
}
}
}
}

0 comments on commit 597d7af

Please sign in to comment.