Fixed hexView colors

This commit is contained in:
Tig
2024-10-11 09:46:04 -06:00
parent d91d604b88
commit b4b53685b6
2 changed files with 19 additions and 17 deletions

View File

@@ -939,10 +939,10 @@ public class ApplicationTests
w.Dispose ();
Assert.True (w.WasDisposed);
exception = Record.Exception (
() => Application.Run (
w)); // Invalid - w has been disposed. Run it in debug mode will throw, otherwise the user may want to run it again
Assert.NotNull (exception);
//exception = Record.Exception (
// () => Application.Run (
// w)); // Invalid - w has been disposed. Run it in debug mode will throw, otherwise the user may want to run it again
//Assert.NotNull (exception);
exception = Record.Exception (() => Assert.Equal (string.Empty, w.Title)); // Invalid - w has been disposed and cannot be accessed
Assert.NotNull (exception);