Skip to content

Commit 8ede7aa

Browse files
committed
fixing ci
1 parent 5b847d5 commit 8ede7aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

NUnit/NUnitAssertions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ public void Other()
152152
// Is.SamePathOrUnder
153153

154154
Assert.That("/folder1/./junk/../folder2", Is.SubPathOf("/folder1/"));
155-
Assert.That(new DirectoryInfo("c:\\temp"), Does.Exist);
156-
Assert.That(new DirectoryInfo("c:\\temp"), Is.Not.Empty);
155+
Assert.That(new DirectoryInfo(Environment.CurrentDirectory), Does.Exist);
156+
Assert.That(new DirectoryInfo(Environment.CurrentDirectory), Is.Not.Empty);
157157
}
158158

159159
[Test]

0 commit comments

Comments
 (0)