Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
lens0021 committed Apr 12, 2021
1 parent 5eb722c commit 32dbbfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/legunto_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ def test_to_filename():
'foo'

assert legunto.to_filename('Module:foo bar') == \
'foo bar'
'foo%20bar'

assert legunto.to_filename('Module:foo/bar') == \
'foo-bar'
'foo%2Fbar'

assert legunto.to_filename('모듈:foo/bar') == \
'foo-bar'
'foo%2Fbar'

0 comments on commit 32dbbfd

Please sign in to comment.