Skip to content

Commit b62e612

Browse files
committed
Fix test_400_tns_run_android_respect_adb_errors
1 parent 0db9fd7 commit b62e612

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/emulator/run_android_tests.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,8 @@ def test_400_tns_run_android_respect_adb_errors(self):
482482
# Run the app and verify there is appropriate error
483483
output = Tns.run_android(attributes={'--path': 'TestApp2', '--device': EMULATOR_ID, '--justlaunch': ''},
484484
assert_success=False)
485-
assert 'No space left on device' in output # Test for CLI issue 2170
485+
# Test for CLI issue 2170
486+
assert 'No space left on device' in output or "didn't have enough storage space" in output
486487

487488
def test_401_tns_run_android_should_not_continue_on_build_failure(self):
488489
"""

0 commit comments

Comments
 (0)