summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/tests/test_tweens.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/tests/test_tweens.py b/pyramid/tests/test_tweens.py
index a626afa11..20a64908e 100644
--- a/pyramid/tests/test_tweens.py
+++ b/pyramid/tests/test_tweens.py
@@ -281,6 +281,6 @@ class TestCyclicDependencyError(unittest.TestCase):
def test___str__(self):
exc = self._makeOne({'a':['c', 'd'], 'c':['a']})
result = str(exc)
- self.assertEqual(result,
- "'a' sorts over ['c', 'd']; 'c' sorts over ['a']")
+ self.assertTrue("'a' sorts over ['c', 'd']" in result)
+ self.assertTrue("'c' sorts over ['a']" in result)