mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-31 10:17:55 +01:00
Fix escSeqRequests that may be null running unit tests.
This commit is contained in:
@@ -364,7 +364,7 @@ public static class EscSeqUtils
|
||||
else
|
||||
{
|
||||
// It's request response that wasn't handled by a valid request terminator
|
||||
System.Diagnostics.Debug.Assert (escSeqRequests is { Statuses.Count: > 0 });
|
||||
System.Diagnostics.Debug.Assert (escSeqRequests is null or { Statuses.Count: > 0 });
|
||||
|
||||
InvalidRequestTerminator = ToString (cki);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user