Skip to content

Commit c0b80dc

Browse files
fix: typos/copypaste in various options (appium#750)
1 parent 2a41c39 commit c0b80dc

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

appium/options/common/no_reset_option.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424

2525
class NoResetOption(SupportsCapabilities):
2626
@property
27-
def full_reset(self) -> Optional[bool]:
27+
def no_reset(self) -> Optional[bool]:
2828
"""
2929
Whether the driver should not perform a reset.
3030
"""
3131
return self.get_capability(NO_RESET)
3232

33-
@full_reset.setter
34-
def full_reset(self, value: bool) -> None:
33+
@no_reset.setter
34+
def no_reset(self, value: bool) -> None:
3535
"""
3636
Set whether the driver should not perform a reset.
3737
"""

appium/options/ios/xcuitest/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from appium.options.common.auto_web_view_option import AutoWebViewOption
2222
from appium.options.common.automation_name_option import AUTOMATION_NAME
2323
from appium.options.common.base import PLATFORM_NAME, AppiumOptions
24+
from appium.options.common.bundle_id_option import BundleIdOption
2425
from appium.options.common.clear_system_files_option import ClearSystemFilesOption
2526
from appium.options.common.device_name_option import DeviceNameOption
2627
from appium.options.common.enable_performance_logging_option import EnablePerformanceLoggingOption
@@ -118,6 +119,7 @@
118119
class XCUITestOptions(
119120
AppiumOptions,
120121
AppOption,
122+
BundleIdOption,
121123
ClearSystemFilesOption,
122124
OrientationOption,
123125
UdidOption,

0 commit comments

Comments
 (0)