summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2016-02-28 14:52:09 -0600
committerMichael Merickel <michael@merickel.org>2016-02-28 14:52:09 -0600
commit53c7f7c0f93883dcd37facebd550b38ec79034e6 (patch)
tree28f1a1e47a0335ccab774bb2d0e80eea7cce6935
parentcb21ae04bbcc3612704fcc6e5792eb7eb395d059 (diff)
downloadpyramid-53c7f7c0f93883dcd37facebd550b38ec79034e6.tar.gz
pyramid-53c7f7c0f93883dcd37facebd550b38ec79034e6.tar.bz2
pyramid-53c7f7c0f93883dcd37facebd550b38ec79034e6.zip
add a failing test case with #1370
-rw-r--r--pyramid/tests/test_config/test_predicates.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/tests/test_config/test_predicates.py b/pyramid/tests/test_config/test_predicates.py
index ee24de093..9cd8f2734 100644
--- a/pyramid/tests/test_config/test_predicates.py
+++ b/pyramid/tests/test_config/test_predicates.py
@@ -120,9 +120,9 @@ class TestRequestParamPredicate(unittest.TestCase):
self.assertTrue(result)
def test___call___true_multi(self):
- inst = self._makeOne(('abc', 'def =2 '))
+ inst = self._makeOne(('abc', '=def =2= '))
request = Dummy()
- request.params = {'abc':'1', 'def': '2'}
+ request.params = {'abc':'1', '=def': '2='}
result = inst(None, request)
self.assertTrue(result)