aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_collections.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-04-06 10:07:47 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-04-06 10:08:26 -0500
commit7d503a897bddfadcd98d278bdb648503485a19de (patch)
tree37243d723d12e36cae0227dd55c3bc7661fc29c2 /mediagoblin/tests/test_collections.py
parent441238539485dcf0b5fd612e8f795a7bfb233727 (diff)
downloadmediagoblin-7d503a897bddfadcd98d278bdb648503485a19de.tar.lz
mediagoblin-7d503a897bddfadcd98d278bdb648503485a19de.tar.xz
mediagoblin-7d503a897bddfadcd98d278bdb648503485a19de.zip
Really removing nosetests things now! all assert_whatever removed
Diffstat (limited to 'mediagoblin/tests/test_collections.py')
-rw-r--r--mediagoblin/tests/test_collections.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mediagoblin/tests/test_collections.py b/mediagoblin/tests/test_collections.py
index d4d3af71..87782f30 100644
--- a/mediagoblin/tests/test_collections.py
+++ b/mediagoblin/tests/test_collections.py
@@ -16,7 +16,6 @@
from mediagoblin.tests.tools import fixture_add_collection, fixture_add_user
from mediagoblin.db.models import Collection, User
-from nose.tools import assert_equal
def test_user_deletes_collection(test_app):
@@ -30,4 +29,4 @@ def test_user_deletes_collection(test_app):
user.delete()
cnt2 = Collection.query.count()
- assert_equal(cnt1, cnt2 + 1)
+ assert cnt1 == cnt2 + 1