Skip to content

Commit

Permalink
Adding new line at the end of files.
Browse files Browse the repository at this point in the history
  • Loading branch information
kn-neeraj committed Aug 5, 2020
1 parent 449094d commit d26bc75
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
*/local.log
*/**.pyc
**/.DS_Store
**/.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ Note: For other test frameworks supported by App-Automate refer our [Developer d
## Getting Help
If you are running into any issues or have any queries, please check [Browserstack Support page](https://www.browserstack.com/support/app-automate) or [get in touch with us](https://www.browserstack.com/contact?ref=help).
If you are running into any issues or have any queries, please check [Browserstack Support page](https://www.browserstack.com/support/app-automate) or [get in touch with us](https://www.browserstack.com/contact?ref=help).
2 changes: 1 addition & 1 deletion android/examples/run-first-test/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
"device": "Google Pixel 3",
"os_version": "9.0"
}
}
}
2 changes: 1 addition & 1 deletion android/examples/run-first-test/pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ def run(args):
if args[0] == 'first_test':
run_behave_test()
else:
print("Wrong paver task given")
print("Wrong paver task given")
2 changes: 1 addition & 1 deletion android/examples/run-local-test/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
"os_version": "9.0",
"browserstack.local": true
}
}
}
2 changes: 1 addition & 1 deletion android/examples/run-local-test/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def before_feature(context, feature):
def after_feature(context, feature):
context.browser.quit()
# Stop BrowserStack local after end of the test
stop_local()
stop_local()
2 changes: 1 addition & 1 deletion android/examples/run-local-test/pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ def run(args):
if args[0] == 'local_test':
run_behave_test()
else:
print("Wrong paver task given")
print("Wrong paver task given")
2 changes: 1 addition & 1 deletion android/examples/run-parallel-tests/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
"device": "Samsung Galaxy S10e",
"os_version": "9.0"
}]
}
}
2 changes: 1 addition & 1 deletion ios/examples/run-first-test/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
"device": "iPhone 11 Pro",
"os_version": "13"
}
}
}
2 changes: 1 addition & 1 deletion ios/examples/run-first-test/features/first_test.feature
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Feature: Text Verification in Sample App
Scenario: Displayed Text should match Input Text
Given I open the app and click on Text Button
Then Type "[email protected]" and hit enter
Then Verify displayed text matches input text
Then Verify displayed text matches input text
2 changes: 1 addition & 1 deletion ios/examples/run-first-test/features/steps/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ def step_impl(context):
if text_output!=None and text_output.text=="[email protected]":
assert True
else:
assert False
assert False
2 changes: 1 addition & 1 deletion ios/examples/run-first-test/pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ def run(args):
if args[0] == 'first_test':
run_behave_test()
else:
print("Wrong paver task given")
print("Wrong paver task given")
2 changes: 1 addition & 1 deletion ios/examples/run-local-test/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
"os_version": "13",
"browserstack.local": true
}
}
}
2 changes: 1 addition & 1 deletion ios/examples/run-local-test/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def before_feature(context, feature):
def after_feature(context, feature):
context.browser.quit()
# Stop BrowserStack local after end of the test
stop_local()
stop_local()
2 changes: 1 addition & 1 deletion ios/examples/run-local-test/features/steps/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ def step_impl(context, regex):
print("Screenshot stored at %s" % (screenshot_file))
raise Exception("Unexpected BrowserStackLocal test result")
else:
assert(result_string.__contains__(regex.lower()))
assert(result_string.__contains__(regex.lower()))
2 changes: 1 addition & 1 deletion ios/examples/run-local-test/pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ def run(args):
if args[0] == 'local_test':
run_behave_test()
else:
print("Wrong paver task given")
print("Wrong paver task given")
2 changes: 1 addition & 1 deletion ios/examples/run-parallel-tests/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"device": "iPhone 11 Pro Max",
"os_version": "13"
}]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Feature: Text Verification in Sample App
Scenario: Displayed Text should match Input Text
Given I open the app and click on Text Button
Then Type "[email protected]" and hit enter
Then Verify displayed text matches input text
Then Verify displayed text matches input text
2 changes: 1 addition & 1 deletion ios/examples/run-parallel-tests/features/steps/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ def step_impl(context):
if text_output!=None and text_output.text=="[email protected]":
assert True
else:
assert False
assert False

0 comments on commit d26bc75

Please sign in to comment.