Skip to content

Commit

Permalink
Fix: flake8 bad quote
Browse files Browse the repository at this point in the history
  • Loading branch information
nazrulworld committed Jun 20, 2017
1 parent 2537a45 commit b7281c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plone/recipe/sublimetext/tests/test_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test__set_defaults(self):
# Test: if any ``sublime-project`` suffix file is available inside buildout directory
# that should be picked as default project file name
_project_file = 'human_project'
write(self.location, _project_file + '.sublime-project', '''[]''')
write(self.location, _project_file + '.sublime-project', '[]')
# clear previously assaigned default
del buildout['sublimetext']['project-name']

Expand Down Expand Up @@ -411,7 +411,7 @@ def test_uninstall(self):
write(
self.location,
filename,
'''{"hello": "T20"}'''
'{"hello": "T20"}'
)
uninstall(recipe.name, recipe.options)

Expand Down

0 comments on commit b7281c2

Please sign in to comment.