Skip to content

Commit

Permalink
- fixes wrong expected url value
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Oct 6, 2021
1 parent 02706aa commit 57e7ca8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void SetUriExtractsQueryParameters()
// Act
testRequest.QueryParameters.Add("foo", "bar");
// Assert
Assert.Equal("http://localhost/me?me?foo=bar", testRequest.URI.ToString());
Assert.Equal("http://localhost/me?foo=bar", testRequest.URI.ToString());
Assert.NotEmpty(testRequest.QueryParameters);
Assert.Equal("foo",testRequest.QueryParameters.First().Key);
Assert.Equal("bar", testRequest.QueryParameters.First().Value.ToString());
Expand Down

0 comments on commit 57e7ca8

Please sign in to comment.