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

Commit 4b08403

Browse files
Cleanup
1 parent 3a9593c commit 4b08403

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tests/UnitTests/IO/GitObjectFactoryTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public void ShouldParseNormalFile()
1818
CurrentDirectory = @"c:\Projects\UnityProject"
1919
});
2020

21-
var environment = NSubstitute.Substitute.For<IEnvironment>();
21+
var environment = Substitute.For<IEnvironment>();
2222
environment.RepositoryPath.Returns(@"c:\Projects\UnityProject".ToNPath());
2323
environment.UnityProjectPath.Returns(@"c:\Projects\UnityProject".ToNPath());
2424

@@ -37,7 +37,7 @@ public void ShouldParseOddFile()
3737
CurrentDirectory = @"c:\Projects\UnityProject"
3838
});
3939

40-
var environment = NSubstitute.Substitute.For<IEnvironment>();
40+
var environment = Substitute.For<IEnvironment>();
4141
environment.RepositoryPath.Returns(@"c:\Projects\UnityProject".ToNPath());
4242
environment.UnityProjectPath.Returns(@"c:\Projects\UnityProject".ToNPath());
4343

@@ -47,4 +47,4 @@ public void ShouldParseOddFile()
4747
Assert.AreEqual(@"c:\Projects\UnityProject\c:UsersOculusGoVideo.mp4", gitStatusEntry.FullPath);
4848
}
4949
}
50-
}
50+
}

0 commit comments

Comments
 (0)