Improve code formatting

This commit is contained in:
Stone_Red
2022-11-17 11:40:51 +01:00
parent 533ad23c4d
commit 1ced6f393c
11 changed files with 39 additions and 109 deletions
+1 -1
View File
@@ -39,6 +39,6 @@ public class CodeFlowTests
public void CalculationsTest()
{
Assert.Inconclusive();
YesNtAssert.IsLineEqual("10 * 10 !calc", (20).ToString());
YesNtAssert.IsLineEqual("10 * 10 !calc", 20.ToString());
}
}
+2 -2
View File
@@ -28,7 +28,7 @@ internal static class YesNtAssert
if (er is null)
{
onDone.Set();
_ = onDone.Set();
}
};
@@ -51,7 +51,7 @@ internal static class YesNtAssert
yesNtInterpreter.OnLineExecuted += (er) =>
{
debugEventArgs = er ?? debugEventArgs;
onDone.Set();
_ = onDone.Set();
};
yesNtInterpreter.Execute(lines, true);