Skip to content

Commit

Permalink
some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
darthbear committed Apr 14, 2015
1 parent f9bc375 commit 377b60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_config_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def test_concat_multi_line_string(self):
"""
)

assert [x.strip(' ') for x in config['common_modules'].split(' ') if x.strip(' ') != ''] == ['perl', 'java', 'python']
assert [x.strip() for x in config['common_modules'].split() if x.strip(' ') != ''] == ['perl', 'java', 'python']

def test_concat_multi_line_list(self):
config = ConfigFactory.parse_string(
Expand Down

0 comments on commit 377b60d

Please sign in to comment.