@@ -84,8 +84,11 @@ def test_005_Platform_Add_Android_Symlink_And_FrameworkPath(self):
84
84
CreateProject (projName = "TNS_App" )
85
85
output = PlatformAdd (platform = "android" , path = "TNS_App" , frameworkPath = androidRuntimeSymlinkPath , symlink = True )
86
86
assert ("Copying template files..." in output )
87
- assert ("Updated project.properties" in output )
88
- assert ("Updated local.properties" in output )
87
+
88
+ # Not valid for 1.3.0+
89
+ # assert("Updated project.properties" in output)
90
+ # assert("Updated local.properties" in output)
91
+
89
92
assert ("Project successfully created" in output )
90
93
assert IsEmpty ('TNS_App/platforms/android/assets' )
91
94
assert IsEmpty ('TNS_App/platforms/android/libs' )
@@ -114,8 +117,11 @@ def test_201_Platform_Add_Android_InsideProject(self):
114
117
os .chdir (currentDir );
115
118
116
119
assert ("Copying template files..." in output )
117
- assert ("Updated project.properties" in output )
118
- assert ("Updated local.properties" in output )
120
+
121
+ # Not valid for 1.3.0+
122
+ # assert("Updated project.properties" in output)
123
+ # assert("Updated local.properties" in output)
124
+
119
125
assert ("Project successfully created" in output )
120
126
121
127
if ('TESTRUN' in os .environ ) and (not "SMOKE" in os .environ ['TESTRUN' ]) and ("2" in os .environ ['ANDROID_HOME' ]):
@@ -233,8 +239,11 @@ def test_220_SetSDK(self):
233
239
CreateProject (projName = "TNS_App" )
234
240
output = PlatformAdd (platform = "android --sdk 19" , frameworkPath = androidRuntimePath , path = "TNS_App" )
235
241
assert ("Copying template files..." in output )
236
- assert ("Updated project.properties" in output )
237
- assert ("Updated local.properties" in output )
242
+
243
+ # Not valid for 1.3.0+
244
+ # assert("Updated project.properties" in output)
245
+ # assert("Updated local.properties" in output)
246
+
238
247
assert ("Project successfully created" in output )
239
248
output = runAUT ("cat cat TNS_App/platforms/android/AndroidManifest.xml " )
240
249
assert ("android:minSdkVersion=\" 17\" " in output )
0 commit comments