diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-08 12:45:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-08 12:45:54 -0500 |
commit | ec5539fa8c0d2f0b783869e73cacde1af32465b0 (patch) | |
tree | 248b8a427d82aa68db583eb97a92e7e84b49b913 /tests/test_transcript.py | |
parent | 4a6bcefbc72018c90534139c706c2b9d3d327810 (diff) | |
parent | cc0e901183c631fb54a968ba9fcdb5f2dda52207 (diff) | |
download | cmd2-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.py | 2 |
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 |