summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-05-04 21:28:07 -0400
committerJosé Padilla <jpadilla@webapplicate.com>2019-05-04 21:28:07 -0400
commit5a9c34f2ebd55fce52a19e57974df86ac5a5f8c2 (patch)
tree9ab5744527d3f36e47f7270e455713713017df02
parented28e495f937f50165a252fd5696a82942cd83a7 (diff)
downloadpyjwt-5a9c34f2ebd55fce52a19e57974df86ac5a5f8c2.tar.gz
Fix linter error in test_cli (#414)
-rw-r--r--tests/test_cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cli.py b/tests/test_cli.py
index 715c2f1..a89597d 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -109,7 +109,7 @@ class TestCli:
parsed_encode_args = parser.parse_args(encode_args)
token = encode_payload(parsed_encode_args)
assert token is not None
- assert token is not ''
+ assert token != ''
decode_args = [
'--key={0}'.format(key),