Skip to content

Commit

Permalink
fix: traitlets5 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Sep 2, 2020
1 parent 212d968 commit dcf5190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/app/template_cli_test.py
Expand Up @@ -10,7 +10,7 @@
def voila_args_extra():
path_test_template = os.path.abspath(os.path.join(BASE_DIR, '../test_template/share/jupyter/voila/templates/test_template/'))
path_default = os.path.abspath(os.path.join(BASE_DIR, '../../share/jupyter/voila/templates/default'))
return ['--template=None', '--VoilaTest.template_paths=[%r, %r]' % (path_test_template, path_default), '--VoilaExecutor.timeout=240']
return ['--template=\'\'', '--VoilaTest.template_paths=[%r, %r]' % (path_test_template, path_default), '--VoilaExecutor.timeout=240']


async def test_template_test(http_server_client, base_url):
Expand Down

0 comments on commit dcf5190

Please sign in to comment.