diff options
author | crupest <crupest@outlook.com> | 2021-04-28 16:35:47 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-28 16:35:47 +0800 |
commit | 31be743207c09cc6e6cfff5f65d12126fb41cca3 (patch) | |
tree | fd4ce598916ece4a5cb14193b0b3ba421f6494de /BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs | |
parent | ab0fb093ee0769ff67b3b71efdfcccd34bd8683a (diff) | |
download | timeline-31be743207c09cc6e6cfff5f65d12126fb41cca3.tar.gz timeline-31be743207c09cc6e6cfff5f65d12126fb41cca3.tar.bz2 timeline-31be743207c09cc6e6cfff5f65d12126fb41cca3.zip |
refactor: ...
Diffstat (limited to 'BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs')
-rw-r--r-- | BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs b/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs index 4d4835ca..08857dc1 100644 --- a/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs +++ b/BackEnd/Timeline.Tests/IntegratedTests/TokenTest.cs @@ -110,7 +110,7 @@ namespace Timeline.Tests.IntegratedTests using (var scope = TestApp.Host.Services.CreateScope()) // UserDeleteService is scoped.
{
var userService = scope.ServiceProvider.GetRequiredService<IUserDeleteService>();
- await userService.DeleteUser("user1");
+ await userService.DeleteUserAsync("user1");
}
await client.TestPostAssertErrorAsync(VerifyTokenUrl,
|