Skip to content

Commit 5a9c34f

Browse files
jaracojpadilla
authored andcommitted
Fix linter error in test_cli (jpadilla#414)
1 parent ed28e49 commit 5a9c34f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_encode_decode(self, key, name, job, exp, verify):
109109
parsed_encode_args = parser.parse_args(encode_args)
110110
token = encode_payload(parsed_encode_args)
111111
assert token is not None
112-
assert token is not ''
112+
assert token != ''
113113

114114
decode_args = [
115115
'--key={0}'.format(key),

0 commit comments

Comments
 (0)