diff options
author | crupest <crupest@outlook.com> | 2020-01-30 23:49:02 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-01-30 23:49:02 +0800 |
commit | 49bd47fb0eb81a88cce135f7ff7c25637790e63b (patch) | |
tree | 70ddc26cf29bdf4b19e9a746cac6017845e009fc /Timeline.Tests/IntegratedTests/IntegratedTestBase.cs | |
parent | a1a2eede6942aef7d8c20f9e7fb25f53b2b63d86 (diff) | |
download | timeline-49bd47fb0eb81a88cce135f7ff7c25637790e63b.tar.gz timeline-49bd47fb0eb81a88cce135f7ff7c25637790e63b.tar.bz2 timeline-49bd47fb0eb81a88cce135f7ff7c25637790e63b.zip |
Finish reafctor, TODO: Database migration.
Diffstat (limited to 'Timeline.Tests/IntegratedTests/IntegratedTestBase.cs')
-rw-r--r-- | Timeline.Tests/IntegratedTests/IntegratedTestBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs b/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs index af3e0c2f..242e96cd 100644 --- a/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs +++ b/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs @@ -63,7 +63,7 @@ namespace Timeline.Tests.IntegratedTests foreach (var user in users)
{
- userService.CreateUser(user);
+ userService.CreateUser(user).Wait();
userInfoList.Add(mapper.Map<UserInfo>(user));
userInfoForAdminList.Add(mapper.Map<UserInfoForAdmin>(user));
}
|