Skip to content

Commit

Permalink
Fix test that failed under mono on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Aug 30, 2016
1 parent 4fa6041 commit 039fdd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void ProperConfigFileIsUsed()
{
var configFileName = "nunit.engine.tests.dll.config";
var expectedPath = Path.Combine(TestContext.CurrentContext.TestDirectory, configFileName);
Assert.That(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile, Is.EqualTo(expectedPath));
Assert.That(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile, Is.SamePath(expectedPath));
}

[Test]
Expand Down

0 comments on commit 039fdd9

Please sign in to comment.