Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
grendello committed Feb 17, 2023
1 parent 3aed98d commit 3cd503a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public async Task Decompression (string urlPath, string encoding)
}
}

string responseBody = await response.ReadAsStringAsync ();
string responseBody = await response.Content.ReadAsStringAsync ();

Assert.IsTrue (responseBody.Length > 0, "Response was empty");
Assert.IsTrue (responseBody.Contains ($"\"{urlPath}\"", StringComparison.OrdinalIgnoreCase), $"\"{urlPath}\" should have been in the response JSON");
Expand Down

0 comments on commit 3cd503a

Please sign in to comment.