aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_processing.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-05-12 16:07:28 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-05-12 16:07:28 -0500
commit2dee97ef4828c313c9934f1d36986ecb363ef6e4 (patch)
treecaad4ca615eb882f4f565180848e5fa4f064bec3 /mediagoblin/tests/test_processing.py
parenta98c95b41d08033f0539d19dfad10fb13a83d42d (diff)
downloadmediagoblin-2dee97ef4828c313c9934f1d36986ecb363ef6e4.tar.lz
mediagoblin-2dee97ef4828c313c9934f1d36986ecb363ef6e4.tar.xz
mediagoblin-2dee97ef4828c313c9934f1d36986ecb363ef6e4.zip
Removing reference to nose (thanks for catching, Elrond!)
This commit sponsored by Kevin McCarthy. Thank you!
Diffstat (limited to 'mediagoblin/tests/test_processing.py')
-rw-r--r--mediagoblin/tests/test_processing.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/mediagoblin/tests/test_processing.py b/mediagoblin/tests/test_processing.py
index fe8489aa..591add96 100644
--- a/mediagoblin/tests/test_processing.py
+++ b/mediagoblin/tests/test_processing.py
@@ -1,7 +1,5 @@
#!/usr/bin/env python
-from nose.tools import assert_equal
-
from mediagoblin import processing
class TestProcessing(object):
@@ -10,7 +8,7 @@ class TestProcessing(object):
result = builder.fill(format)
if output is None:
return result
- assert_equal(output, result)
+ assert output == result
def test_easy_filename_fill(self):
self.run_fill('/home/user/foo.TXT', '{basename}bar{ext}', 'foobar.txt')