Skip to content

Commit 96f1663

Browse files
committed
Removing nosetests dependency.
1 parent bcb7651 commit 96f1663

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/unit/user_spec.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
from datetime import datetime
2121
from intercom.collection_proxy import CollectionProxy
2222
from intercom.user import User
23-
from nose.tools import eq_
24-
from nose.tools import ok_
25-
from nose.tools import raises
2623

2724
get = httpretty.GET
2825
post = httpretty.POST
@@ -278,7 +275,7 @@ def it_returns_a_CollectionProxy_for_all_without_making_any_requests(self):
278275
def it_returns_the_total_number_of_users(self):
279276
with mock.patch.object(User, 'count') as mock_count:
280277
mock_count.return_value = 100
281-
eq_(100, User.count())
278+
expect(100) == User.count()
282279

283280
class DescribeIncrementingCustomAttributeFields:
284281

0 commit comments

Comments
 (0)