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

Commit 6ad5e29

Browse files
Fixing build after merge
1 parent db58986 commit 6ad5e29

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/GitHub.InlineReviews.UnitTests/Services/DiffServiceTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ public class TheDiffMethod
1414
[Test]
1515
public async Task DiffReturnsEmptyList()
1616
{
17-
var gitClient = Substitute.For<IGitClient>();
18-
gitClient.Compare(null, null, null, null).ReturnsNull();
19-
var target = new DiffService(gitClient);
17+
var gitService = Substitute.For<IGitService>();
18+
gitService.Compare(null, null, null, null).ReturnsNull();
19+
var target = new DiffService(gitService);
2020

2121
var result = await target.Diff(null, null, null, null);
2222

@@ -29,9 +29,9 @@ public class TheDiffOverloadMethod
2929
[Test]
3030
public async Task DiffReturnsEmptyList()
3131
{
32-
var gitClient = Substitute.For<IGitClient>();
33-
gitClient.CompareWith(null, null, null, null, null).ReturnsNull();
34-
var target = new DiffService(gitClient);
32+
var gitService = Substitute.For<IGitService>();
33+
gitService.CompareWith(null, null, null, null, null).ReturnsNull();
34+
var target = new DiffService(gitService);
3535

3636
var result = await target.Diff(null, null, null, null, null);
3737

0 commit comments

Comments
 (0)