diff --git a/test/legunto_test.py b/test/legunto_test.py index 1a7eecd..81f1e9e 100644 --- a/test/legunto_test.py +++ b/test/legunto_test.py @@ -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'