Skip to content

Commit

Permalink
Fix docblocks [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
kblomqvist committed Apr 29, 2018
1 parent 174d2d0 commit 59a27c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 59a27c9

Please sign in to comment.