From 2dee97ef4828c313c9934f1d36986ecb363ef6e4 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 12 May 2013 16:07:28 -0500 Subject: [PATCH] Removing reference to nose (thanks for catching, Elrond!) This commit sponsored by Kevin McCarthy. Thank you! --- mediagoblin/tests/test_processing.py | 4 +--- 1 file changed, 1 insertion(+), 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') -- 2.25.1