diff options
author | crupest <crupest@outlook.com> | 2020-06-18 22:36:00 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-18 22:36:00 +0800 |
commit | c118855c8b03d419687fe26434afc8c0a8fc33f5 (patch) | |
tree | ec406e824acb93b91426e2aa0288575cc871cc7f /Timeline.Tests/Services | |
parent | d9ed0c1b0fb04d161d27b556e33f0a03738e717d (diff) | |
download | timeline-c118855c8b03d419687fe26434afc8c0a8fc33f5.tar.gz timeline-c118855c8b03d419687fe26434afc8c0a8fc33f5.tar.bz2 timeline-c118855c8b03d419687fe26434afc8c0a8fc33f5.zip |
Clean codes.
Diffstat (limited to 'Timeline.Tests/Services')
-rw-r--r-- | Timeline.Tests/Services/TimelineServiceTest.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Timeline.Tests/Services/TimelineServiceTest.cs b/Timeline.Tests/Services/TimelineServiceTest.cs index 4f081b5d..cde827db 100644 --- a/Timeline.Tests/Services/TimelineServiceTest.cs +++ b/Timeline.Tests/Services/TimelineServiceTest.cs @@ -1,6 +1,4 @@ -using Castle.Core.Logging;
-using FluentAssertions;
-using FluentAssertions.Xml;
+using FluentAssertions;
using Microsoft.Extensions.Logging.Abstractions;
using System;
using System.Collections.Generic;
@@ -16,7 +14,7 @@ namespace Timeline.Tests.Services {
public class TimelineServiceTest : IAsyncLifetime, IDisposable
{
- private TestDatabase _testDatabase = new TestDatabase();
+ private readonly TestDatabase _testDatabase = new TestDatabase();
private DatabaseContext _databaseContext;
|