Skip to content

Commit 864ea9d

Browse files
committed
removed extra concatenation step
1 parent 43096f7 commit 864ea9d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

sample-code/examples/python/ios_simple.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ class SimpleIOSTests(unittest.TestCase):
1111

1212
def setUp(self):
1313
# set up appium
14-
app = os.path.join(os.path.dirname(__file__),
15-
'../../apps/TestApp/build/release-iphonesimulator',
16-
'TestApp.app')
17-
app = os.path.abspath(app)
14+
app = os.path.abspath('../../apps/TestApp/build/release-iphonesimulator/TestApp.app')
1815
self.driver = webdriver.Remote(
1916
command_executor='http://127.0.0.1:4723/wd/hub',
2017
desired_capabilities={

0 commit comments

Comments
 (0)