We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1423c7b commit b0c4c14Copy full SHA for b0c4c14
1 file changed
test/__init__.py
@@ -97,11 +97,9 @@ def test_send(self):
97
"asm_group_id": 42
98
}
99
'''))
100
- try:
101
- self.assertItemsEqual(url, test_url) #python 2
102
- except AttributeError:
103
- self.assertCountEqual(url, test_url)
104
-
+
+ self.assertEqual(url, test_url)
105
@unittest.skipUnless(sys.version_info < (3, 0), 'only for python2')
106
def test__build_body_unicode(self):
107
"""test _build_body() handles encoded unicode outside ascii range"""
0 commit comments