Skip to content

Commit 86c2740

Browse files
author
Miroslava Ivanova
committed
fix errors
1 parent 916a853 commit 86c2740

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

data/apps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ class Apps(object):
5555
SCHEMATICS_SHARED_SAMPLE = AppInfo(type=AppType.SHARED_NG, id=None, size=__shared_size, texts=['Barcelona'])
5656
SCHEMATICS_NS = AppInfo(type=AppType.NG, id=None, size=__ns_only_size, texts=['Tap the button'])
5757
HELLO_WORLD_JS = AppInfo(type=AppType.JS, id=None, size=None, texts=None)
58-
HELLO_WORLD_TS = AppInfo(type=AppType.TS, id= None, size=None, texts=None)
59-
HELLO_WORLD_NG = AppInfo(type=AppType.NG, id= None, size=None, texts=None)
58+
HELLO_WORLD_TS = AppInfo(type=AppType.TS, id=None, size=None, texts=None)
59+
HELLO_WORLD_NG = AppInfo(type=AppType.NG, id=None, size=None, texts=None)

products/nativescript/tns_assert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ def __verify_created_ng():
118118
assert File.exists(os.path.join(app_path, TnsAssert.HOOKS, 'before-prepare',
119119
'nativescript-dev-typescript.js'))
120120
assert File.exists(os.path.join(app_path, TnsAssert.HOOKS, 'before-watch',
121-
'nativescript-dev-typescript.js'))
121+
'nativescript-dev-typescript.js'))

tests/cli/create/create_tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ def test_007_create_project_with_space(self):
7474
def test_008_create_project_named_123(self):
7575
"""Create app starting with digits should not be possible without --force option"""
7676
Tns.create(app_name=self.js_app_number, template=Template.HELLO_WORLD_JS.local_package,
77-
app_data=self.app_data_JS, update=False, verify=False)
78-
#TODO: package_json contains
77+
app_data=self.app_data_JS, update=False, verify=False)
78+
# TODO: package_json contains
7979

8080
def test_009_create_project_with_appid(self):
8181
"""Create project with --appid option"""
82-
Tns.create(app_name=self.js_app, template=Template.HELLO_WORLD_JS.local_package,app_data=self.app_data_JS,
82+
Tns.create(app_name=self.js_app, template=Template.HELLO_WORLD_JS.local_package, app_data=self.app_data_JS,
8383
update=False, verify=False, app_id='org.nativescript.MyApp')

0 commit comments

Comments
 (0)