diff --git a/Z80/Z80.FuseTest/TestRunner.cs b/Z80/Z80.FuseTest/TestRunner.cs index d7966d5..8afc4ce 100644 --- a/Z80/Z80.FuseTest/TestRunner.cs +++ b/Z80/Z80.FuseTest/TestRunner.cs @@ -126,12 +126,12 @@ namespace Fuse if (expectedHigh != actualHigh) { - DumpDifference(highDescription, actualHigh, expectedHigh); + DumpDifference(highDescription, expectedHigh, actualHigh); } if (expectedLow != actualLow) { - DumpDifference(lowDescription, actualLow, expectedLow); + DumpDifference(lowDescription, expectedLow, actualLow); } } @@ -410,8 +410,10 @@ namespace Fuse this.DumpActualEvents(); } - this.Failed = eventFailure; - + if (!this.Failed) + { + this.Failed = eventFailure; + } } private void DumpExpectedEvents()