Fix error check in test_edit.py for python 3
authorChristopher Allan Webber <cwebber@dustycloud.org>
Tue, 16 Sep 2014 20:15:13 +0000 (15:15 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Tue, 16 Sep 2014 20:15:13 +0000 (15:15 -0500)
This isn't the nicest of checks... we should probably be checking the
actual form passed into the context.  But for now, it's a fix.

mediagoblin/tests/test_edit.py

index 54f43d685e0e20350c416555d7945cfe31aff14f..e34ca27a87d7efed2ac413f52dfb7a15731ea461 100644 (file)
@@ -250,5 +250,5 @@ class TestMetaDataEdit:
         old_metadata = new_metadata
         new_metadata = media_entry.media_metadata
         assert new_metadata == old_metadata
-        assert ("u&#39;On the worst day&#39; is not a &#39;date-time&#39;" in
+        assert (b"&#39;On the worst day&#39; is not a &#39;date-time&#39;" in
             response.body)