aboutsummaryrefslogtreecommitdiff
path: root/Timeline.Tests/Helpers/ResponseAssertions.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-03-11 23:11:58 +0800
committercrupest <crupest@outlook.com>2020-03-11 23:11:58 +0800
commit5a90de954ee2d975cd038438495dfaa5a8d9d6d7 (patch)
treea5070c640db1000193b07af2d6ba93bc7dca5914 /Timeline.Tests/Helpers/ResponseAssertions.cs
parent6fe319d438d32e6d91446e96c07bad19f33b5b03 (diff)
downloadtimeline-5a90de954ee2d975cd038438495dfaa5a8d9d6d7.tar.gz
timeline-5a90de954ee2d975cd038438495dfaa5a8d9d6d7.tar.bz2
timeline-5a90de954ee2d975cd038438495dfaa5a8d9d6d7.zip
Make all integrated tests async.
Diffstat (limited to 'Timeline.Tests/Helpers/ResponseAssertions.cs')
-rw-r--r--Timeline.Tests/Helpers/ResponseAssertions.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/Timeline.Tests/Helpers/ResponseAssertions.cs b/Timeline.Tests/Helpers/ResponseAssertions.cs
index f01a0677..024732f5 100644
--- a/Timeline.Tests/Helpers/ResponseAssertions.cs
+++ b/Timeline.Tests/Helpers/ResponseAssertions.cs
@@ -33,7 +33,9 @@ namespace Timeline.Tests.Helpers
try
{
- var body = res.Content.ReadAsStringAsync().Result;
+ var task = res.Content.ReadAsStringAsync();
+ task.Wait();
+ var body = task.Result;
if (body.Length > 40)
{
body = body[0..40] + " ...";
@@ -83,7 +85,9 @@ namespace Timeline.Tests.Helpers
string body;
try
{
- body = Subject.Content.ReadAsStringAsync().Result;
+ var task = Subject.Content.ReadAsStringAsync();
+ task.Wait();
+ body = task.Result;
}
catch (AggregateException e)
{