We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb7651 commit 96f1663Copy full SHA for 96f1663
tests/unit/user_spec.py
@@ -20,9 +20,6 @@
20
from datetime import datetime
21
from intercom.collection_proxy import CollectionProxy
22
from intercom.user import User
23
-from nose.tools import eq_
24
-from nose.tools import ok_
25
-from nose.tools import raises
26
27
get = httpretty.GET
28
post = httpretty.POST
@@ -278,7 +275,7 @@ def it_returns_a_CollectionProxy_for_all_without_making_any_requests(self):
278
275
def it_returns_the_total_number_of_users(self):
279
276
with mock.patch.object(User, 'count') as mock_count:
280
277
mock_count.return_value = 100
281
- eq_(100, User.count())
+ expect(100) == User.count()
282
283
class DescribeIncrementingCustomAttributeFields:
284
0 commit comments