aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_processing.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-05-12 16:17:35 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-05-12 16:17:35 -0500
commit725404236ef66884e53e0ef83264524768cefb9c (patch)
tree6fe10bc1a8b3e7fcb30cc0c1347334251d5337c9 /mediagoblin/tests/test_processing.py
parent98dacfe67e40eb3c575b2fb9a5a80ced3e284ddc (diff)
parent2dee97ef4828c313c9934f1d36986ecb363ef6e4 (diff)
downloadmediagoblin-725404236ef66884e53e0ef83264524768cefb9c.tar.lz
mediagoblin-725404236ef66884e53e0ef83264524768cefb9c.tar.xz
mediagoblin-725404236ef66884e53e0ef83264524768cefb9c.zip
Merge branch 'master' into 623_context_hooks
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')