Removing reference to nose (thanks for catching, Elrond!)
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 12 May 2013 21:07:28 +0000 (16:07 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 12 May 2013 21:07:28 +0000 (16:07 -0500)
This commit sponsored by Kevin McCarthy.  Thank you!

mediagoblin/tests/test_processing.py

index fe8489aa298ad343596849dedb5e264fc7d410b4..591add96924ae75c99def8f61bf0d3cf047fafc5 100644 (file)
@@ -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')