Skip to content

Commit

Permalink
Fix esc definition
Browse files Browse the repository at this point in the history
  • Loading branch information
tznind committed Jan 18, 2025
1 parent f2fcd6d commit 1060489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnitTests/ConsoleDrivers/V2/NetInputProcessorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void ConsoleKeyInfoToKey_ValidInput_AsRune (ConsoleKeyInfo input, Rune ex
public static IEnumerable<object []> GetConsoleKeyInfoToKeyTestCases_Key ()
{
yield return new object [] { new ConsoleKeyInfo ('\t', ConsoleKey.None, false, false, false), Key.Tab};
yield return new object [] { new ConsoleKeyInfo ('\u005C', ConsoleKey.None, false, false, false), Key.Esc };
yield return new object [] { new ConsoleKeyInfo ('\u001B', ConsoleKey.None, false, false, false), Key.Esc };
yield return new object [] { new ConsoleKeyInfo ('\u007f', ConsoleKey.None, false, false, false), Key.Backspace };

// TODO: Terminal.Gui does not have a Key for this mapped
Expand Down

0 comments on commit 1060489

Please sign in to comment.