Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed Jun 1, 2018
1 parent 93c0585 commit 678359a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/web_test.py
Expand Up @@ -30,7 +30,7 @@ def test_configs(self):
"""
cwd = pathlib.Path.cwd()

assert self.app.config['DEBUG'] == False
assert self.app.import_name == 'application.config'
assert self.app.template_folder == 'templates'
assert self.app.static_folder == str(pathlib.Path(cwd, 'application', 'static'))
assert self.app.config["DEBUG"] == False
assert self.app.import_name == "application.config"
assert self.app.template_folder == "templates"
assert self.app.static_folder == str(pathlib.Path(cwd, "application", "static"))

0 comments on commit 678359a

Please sign in to comment.