aboutsummaryrefslogtreecommitdiff
path: root/Timeline.Tests/Services/TimelineServiceTest.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-11 00:47:00 +0800
committerGitHub <noreply@github.com>2020-08-11 00:47:00 +0800
commit06e79c99bbc810f16058b35f1c88c23148bf8e57 (patch)
tree515c13c3f44c1963cd462b2c82ce34416f49b5f3 /Timeline.Tests/Services/TimelineServiceTest.cs
parent9bd53ad844b66f14080f3a142a419fed1d8bd491 (diff)
parent536dba83194800befce9357bc1cffbed4bb47728 (diff)
downloadtimeline-06e79c99bbc810f16058b35f1c88c23148bf8e57.tar.gz
timeline-06e79c99bbc810f16058b35f1c88c23148bf8e57.tar.bz2
timeline-06e79c99bbc810f16058b35f1c88c23148bf8e57.zip
Merge pull request #144 from crupest/user-time
Add time info to user.
Diffstat (limited to 'Timeline.Tests/Services/TimelineServiceTest.cs')
-rw-r--r--Timeline.Tests/Services/TimelineServiceTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline.Tests/Services/TimelineServiceTest.cs b/Timeline.Tests/Services/TimelineServiceTest.cs
index 919400a3..e129b49d 100644
--- a/Timeline.Tests/Services/TimelineServiceTest.cs
+++ b/Timeline.Tests/Services/TimelineServiceTest.cs
@@ -41,7 +41,7 @@ namespace Timeline.Tests.Services
await _testDatabase.InitializeAsync();
_databaseContext = _testDatabase.CreateContext();
_dataManager = new DataManager(_databaseContext, _eTagGenerator);
- _userService = new UserService(NullLogger<UserService>.Instance, _databaseContext, _passwordService);
+ _userService = new UserService(NullLogger<UserService>.Instance, _databaseContext, _passwordService, _clock);
_timelineService = new TimelineService(NullLogger<TimelineService>.Instance, _databaseContext, _dataManager, _userService, _imageValidator, _clock);
}