From 59a27c96b2a65e7630e50435755821f9fd0c32e4 Mon Sep 17 00:00:00 2001 From: Kim Blomqvist Date: Sun, 29 Apr 2018 15:17:21 +0300 Subject: [PATCH] Fix docblocks [ci skip] --- tests/test_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 08f5f68..d6499fa 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -224,14 +224,14 @@ def test_json_template(tmpdir): def test_mode_is_none(): - ###gh-42, and gh-44""" + """gh-42, and gh-44""" cmd = r'echo -n "{{ foo }}" | yasha -' out = check_output(cmd, shell=True) assert out == b'' def test_mode_is_pedantic(): - ###gh-42""" + """gh-42""" cmd = r'echo -n "{{ foo }}" | yasha --mode=pedantic -' out = check_output(cmd, shell=True, stderr=subprocess.STDOUT) assert out == b"UndefinedError: 'foo' is undefined\n"