Parcourir la source

Fix copy/paste error in SuppressKey test

tznind il y a 2 ans
Parent
commit
67839d108a
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 3 0
      UnitTests/TextFieldTests.cs

+ 3 - 0
UnitTests/TextFieldTests.cs

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