Skip to content

Commit

Permalink
Fix a broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Mar 11, 2021
1 parent c0cd510 commit de1c48f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_client_nologin.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def client():

class TestClientOthersClass:
def test_parse_code(self, client):
assert _parse_code("0101") == ("01", "01", None)
assert _parse_code("0103A") == ("01", "03A", None)
assert _parse_code("0101") == ("01", "01", "0")
assert _parse_code("0103A") == ("01", "03A", "0")
assert _parse_code("010503") == ("01", "05", "010503")
assert _parse_code("030201") == ("03", "02", "030201")

Expand Down

0 comments on commit de1c48f

Please sign in to comment.