Skip to content

Commit 5c0c392

Browse files
committed
Fix test_101_create_project_log_trace
1 parent 607c7fb commit 5c0c392

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/build/common/logtrace_tests.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ def test_101_create_project_log_trace(self):
2222
assert "template-hello-world with version undefined." in output
2323

2424
if CURRENT_OS == OSType.WINDOWS:
25-
assert 'spawn: npm.cmd "install" "tns-core-modules" "--save" "--save-exact"' in output
25+
assert 'spawn: npm.cmd "install" "tns-core-modules@' in output
2626
else:
27-
assert 'spawn: npm "install" "tns-core-modules" "--save" "--save-exact"' in output
27+
assert 'spawn: npm "install" "tns-core-modules@' in output
2828
assert "Project " + self.app_name + " was successfully created" in output
2929

3030
def test_102_platform_add_log_trace(self):

0 commit comments

Comments
 (0)