diff options
author | 杨宇千 <crupest@outlook.com> | 2019-11-13 22:55:31 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-11-13 22:55:31 +0800 |
commit | a1e6182c205f726b33c47438a8334449ca92d411 (patch) | |
tree | 3513c60842b2b6330c51a05cce37182ed6aa34c0 /Timeline.Tests/Controllers/PersonalTimelineControllerTest.cs | |
parent | c348cd3972aa30eb3f09ae61ba99374527a01af8 (diff) | |
download | timeline-a1e6182c205f726b33c47438a8334449ca92d411.tar.gz timeline-a1e6182c205f726b33c47438a8334449ca92d411.tar.bz2 timeline-a1e6182c205f726b33c47438a8334449ca92d411.zip |
WIP : Write timeline service.
Diffstat (limited to 'Timeline.Tests/Controllers/PersonalTimelineControllerTest.cs')
-rw-r--r-- | Timeline.Tests/Controllers/PersonalTimelineControllerTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline.Tests/Controllers/PersonalTimelineControllerTest.cs b/Timeline.Tests/Controllers/PersonalTimelineControllerTest.cs index aecd10af..a7cbb37e 100644 --- a/Timeline.Tests/Controllers/PersonalTimelineControllerTest.cs +++ b/Timeline.Tests/Controllers/PersonalTimelineControllerTest.cs @@ -367,7 +367,7 @@ namespace Timeline.Tests.Controllers });
result.Should().NotBeNull().And.BeAssignableTo<BadRequestObjectResult>()
.Which.Value.Should().BeAssignableTo<CommonResponse>()
- .Which.Code.Should().Be(ErrorCodes.Http.Timeline.MemberAddNotExist);
+ .Which.Code.Should().Be(ErrorCodes.Http.Timeline.ChangeMemberUserNotExist);
_service.VerifyAll();
}
|