summaryrefslogtreecommitdiff
path: root/tests/test_transcript.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-08 12:45:54 -0500
committerGitHub <noreply@github.com>2017-02-08 12:45:54 -0500
commitec5539fa8c0d2f0b783869e73cacde1af32465b0 (patch)
tree248b8a427d82aa68db583eb97a92e7e84b49b913 /tests/test_transcript.py
parent4a6bcefbc72018c90534139c706c2b9d3d327810 (diff)
parentcc0e901183c631fb54a968ba9fcdb5f2dda52207 (diff)
downloadcmd2-git-ec5539fa8c0d2f0b783869e73cacde1af32465b0.tar.gz
Merge pull request #39 from python-cmd2/parsing_experiments
Parsing improvements for commands using the options decorator
Diffstat (limited to 'tests/test_transcript.py')
-rw-r--r--tests/test_transcript.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_transcript.py b/tests/test_transcript.py
index d699f545..7e89180a 100644
--- a/tests/test_transcript.py
+++ b/tests/test_transcript.py
@@ -204,7 +204,7 @@ Options:
def test_comment_stripping(_cmdline_app):
out = run_cmd(_cmdline_app, 'speak it was /* not */ delicious! # Yuck!')
- expected = normalize("""it was delicious!""")
+ expected = normalize("""it was delicious!""")
assert out == expected