aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-01-19 15:24:39 +0800
committercrupest <crupest@outlook.com>2021-01-19 15:24:39 +0800
commit9494c9717f0d9983ec1c8db092387fef7199b00d (patch)
treecea8e25b7bded0833b3e4c6a5c1c018785cd3c30 /BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
parent667f14149f32756a80018ead27102c63270644f4 (diff)
downloadtimeline-9494c9717f0d9983ec1c8db092387fef7199b00d.tar.gz
timeline-9494c9717f0d9983ec1c8db092387fef7199b00d.tar.bz2
timeline-9494c9717f0d9983ec1c8db092387fef7199b00d.zip
test: Add integrated tests for search api.
Diffstat (limited to 'BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs')
-rw-r--r--BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs b/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
index 0bf3b2b2..006b5128 100644
--- a/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
+++ b/BackEnd/Timeline.Tests/IntegratedTests/BaseTimelineTest.cs
@@ -15,7 +15,7 @@ namespace Timeline.Tests.IntegratedTests
for (int i = 0; i <= 3; i++)
{
using var client = await CreateClientAs(i);
- await client.TestPostAsync("timelines", new TimelineCreateRequest { Name = $"t{i}" });
+ await client.TestPostAsync("timelines", new HttpTimelineCreateRequest { Name = $"t{i}" });
}
}