Skip to content

Commit

Permalink
Don't end a line with whitespace.
Browse files Browse the repository at this point in the history
This might be stripped by editors at will, which will make some
tests brake.
  • Loading branch information
lndbrg committed Aug 15, 2014
1 parent 991d56b commit d05ef51
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@
\tUser bjork
Port=3333
Host *
\t \t Crazy something dumb
"""

dont_strip_whitespace_please = "\t \t Crazy something dumb "

test_config_file += dont_strip_whitespace_please
test_config_file += """
Host spoo.example.com
Crazy something else
"""
Expand Down

0 comments on commit d05ef51

Please sign in to comment.