Skip to content

Commit

Permalink
fix relative path in unicode test
Browse files Browse the repository at this point in the history
  • Loading branch information
amueller committed May 19, 2017
1 parent 9d811e3 commit 8b2c6da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_wordcloud_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ def test_parse_args_defaults_to_random_color():


def test_unicode_text_file():
args = cli.parse_args(['--text', "unicode_text.txt"])
unicode_file = os.path.join(os.path.dirname(__file__), "unicode_text.txt")
args = cli.parse_args(['--text', unicode_file])
assert_equal(len(args.text), 16)


Expand Down

0 comments on commit 8b2c6da

Please sign in to comment.