Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mozillazg committed Mar 3, 2024
1 parent c2ab6be commit 8fe2c16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_default():
assert options.style == 'zh4ao'
assert options.separator == '-'
assert not options.heteronym
assert options.hans == '你好'
assert options.hans == ['你好']
assert options.errors == 'default'


Expand All @@ -27,7 +27,7 @@ def test_custom():
assert options.separator == ' '
assert options.errors == 'ignore'
assert options.heteronym
assert options.hans == '你好啊'
assert options.hans == ['你好啊']


if __name__ == '__main__':
Expand Down

0 comments on commit 8fe2c16

Please sign in to comment.