Browse Source

Fix copy/paste error in SuppressKey test

tznind 2 years ago
parent
commit
67839d108a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      UnitTests/TextFieldTests.cs

+ 3 - 0
UnitTests/TextFieldTests.cs

@@ -1243,6 +1243,9 @@ namespace Terminal.Gui.Views {
 
 
 		private bool SuppressKey (KeyEvent arg)
 		private bool SuppressKey (KeyEvent arg)
 		{
 		{
+			if (arg.KeyValue == 'j')
+				return true;
+
 			return false;
 			return false;
 		}
 		}