@@ -119,8 +119,7 @@ def test_001_tns_run_android_js_css_xml_manifest(self):
119
119
# Changes in App_Resources should rebuild native project
120
120
res_path = os .path .join (self .app_name , 'app' , 'App_Resources' , 'Android' , 'AndroidManifest.xml' )
121
121
File .replace (res_path , '17' , '19' )
122
- strings = ['Preparing project' , 'Building project' , 'Gradle build' , 'Running full build' ,
123
- 'Successfully synced application' ]
122
+ strings = ['Preparing project' , 'Building project' , 'Gradle build' , 'Successfully synced application' ]
124
123
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 60 )
125
124
126
125
# Verify app looks correct inside emulator
@@ -372,7 +371,6 @@ def test_310_tns_run_android_clean_builds(self):
372
371
assert 'Skipping prepare' in log , "Prepare NOT skipped when no files are changed and `tns run android --clean`"
373
372
assert 'Building project...' in log , "Full rebuild not triggered when --clean is used"
374
373
assert 'Gradle build' in log , "Full rebuild not triggered when --clean is used"
375
- assert 'Running full build' in log , "Full rebuild not triggered when --clean is used"
376
374
377
375
Device .wait_for_text (device_id = EMULATOR_ID , text = '42 taps left' )
378
376
@@ -382,7 +380,6 @@ def test_310_tns_run_android_clean_builds(self):
382
380
'--justlaunch' : '' , '--clean' : '' })
383
381
assert 'Skipping prepare' not in log , "Prepare skipped when change files and run `tns run android --clean`"
384
382
assert 'Gradle build' in log , "Full rebuild not triggered when --clean is used"
385
- assert 'Running full build' in log , "Full rebuild not triggered when --clean is used"
386
383
387
384
Device .wait_for_text (device_id = EMULATOR_ID , text = '52 taps left' )
388
385
@@ -392,7 +389,6 @@ def test_310_tns_run_android_clean_builds(self):
392
389
'--justlaunch' : '' , '--clean' : '' })
393
390
assert 'Skipping prepare' not in log
394
391
assert 'Gradle build' in log , "Full rebuild not triggered when --clean is used"
395
- assert 'Running full build' in log , "Full rebuild not triggered when --clean is used"
396
392
397
393
Device .wait_for_text (device_id = EMULATOR_ID , text = '42 taps left' )
398
394
0 commit comments