We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75ecf9e commit 9327e1eCopy full SHA for 9327e1e
tests/test_responsetemplate.py
@@ -28,8 +28,8 @@ def test_responsetemplatemethods():
28
29
# #.isPending
30
# [not in api response]
31
- assert tpl.isPending() == False
+ assert tpl.isPending() is False
32
# [in api response]
33
tpl2 = ResponseTemplate(
34
'[RESPONSE]\r\ncode=423\r\ndescription=Empty API response\r\npending=1\r\nEOF\r\n')
35
- assert tpl2.isPending()
+ assert tpl2.isPending() is True
0 commit comments