Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit 9da19b3

Browse files
committed
fix unit test
1 parent 8426907 commit 9da19b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Analogy.LogViewer.PowerToys.UnitTests/UnitTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using System.Linq;
21
using Analogy.LogViewer.PowerToys.IAnalogy;
32
using Microsoft.VisualStudio.TestTools.UnitTesting;
3+
using System.Linq;
44
using System.Threading;
55
using System.Threading.Tasks;
66

@@ -15,7 +15,7 @@ public async Task TestMethod1()
1515
var parser = new OfflineDataProvider();
1616
await parser.InitializeDataProviderAsync(null);
1717
var results = await parser.Process("2020-10-03.txt", new CancellationToken(), new MessageHandlerForTesting());
18-
Assert.IsTrue(results.Count()==60);
18+
Assert.IsTrue(results.Count() == 61);
1919

2020

2121
}

0 commit comments

Comments
 (0)