From 61a4a86c3c428cc7ca985f003fb23641d1bde2ee Mon Sep 17 00:00:00 2001 From: crupest Date: Wed, 11 Mar 2020 23:11:58 +0800 Subject: Make all integrated tests async. --- Timeline.Tests/Helpers/ResponseAssertions.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Timeline.Tests/Helpers/ResponseAssertions.cs') 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) { -- cgit v1.2.3