Skip to content

Commit e36778c

Browse files
committed
fix: remove redundant HideKeyboard call in KeyboardTests
1 parent 33f46b8 commit e36778c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/integration/IOS/Device/KeyboardTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ public void HideKeyboard_WithKeyAndStrategy_ShouldInvokeHelperMethod()
3232
// Act
3333
iosDriver.FindElement(MobileBy.AccessibilityId("IntegerA")).Click();
3434
iosDriver.HideKeyboard(key, strategy);
35-
3635
// Assert
3736
var keyboard_shown = iosDriver.IsKeyboardShown();
3837
Assert.That(keyboard_shown, Is.EqualTo(false));
@@ -46,7 +45,6 @@ public void HideKeyboard_WithKeyOnly_ShouldInvokeHelperMethod()
4645
iosDriver.FindElement(MobileBy.AccessibilityId("IntegerA")).Click();
4746
// Act
4847
iosDriver.HideKeyboard(key);
49-
iosDriver.HideKeyboard();
5048
// Assert
5149
var keyboard_shown = iosDriver.IsKeyboardShown();
5250
Assert.That(keyboard_shown, Is.EqualTo(false));

0 commit comments

Comments
 (0)