Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BraedonWooding committed Aug 28, 2024
1 parent 833fbf2 commit 7ec4d88
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,6 @@ private static void Test_NIntPropertySetter(InteropAccessMode opt)
});
}



private static void Test_InvalidPropertySetter(InteropAccessMode opt)
{
string script = @"
Expand Down
2 changes: 1 addition & 1 deletion SolarSharp.Interpreter.Tests/TapRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void Print(string str)
{
// System.Diagnostics.Debug.WriteLine(str);

Assert.That(str.Trim().StartsWith("not ok"), Is.False, string.Format("TAP fail ({0}) : {1}", m_File, str));
Assert.That(str.Trim(), Does.Not.StartWith("not ok"), string.Format("TAP fail ({0}) : {1}", m_File, str));
}

public TapRunner(string filename)
Expand Down

0 comments on commit 7ec4d88

Please sign in to comment.