10000 apparently 2.5 and 2.6 don't like the assertIsNone method. · Stackdriver/twilio-python@9c9fae2 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 1, 2018. It is now read-only.

Commit 9c9fae2

Browse files
author
Kevin Burke
committed
apparently 2.5 and 2.6 don't like the assertIsNone method.
1 parent 02a7e0c commit 9c9fae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_base_resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def testLoadDateCreated(self):
117117

118118
def testLoadNullDate(self):
119119
self.r.load({"date_created": None, "uri": "foobar"})
120-
assert_is_none(self.r.date_created)
120+
assert self.r.date_created is None
121121

122122
def testLoadWithFrom(self):
123123
self.r.load({"from": "foo"})

0 commit comments

Comments
 (0)
0