summaryrefslogtreecommitdiff
path: root/tests/test_integration.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2024-01-27 17:33:26 -0700
committerMichael Merickel <michael@merickel.org>2024-01-27 17:33:26 -0700
commit19ae96b97ea055c2e36c8fb86819c426b37ab6af (patch)
tree437540b467bd1a2af90409145935742537b3699e /tests/test_integration.py
parent8a9d78106fd3b6d6dc44fabd205ee2c58fffef08 (diff)
downloadpyramid-19ae96b97ea055c2e36c8fb86819c426b37ab6af.tar.gz
pyramid-19ae96b97ea055c2e36c8fb86819c426b37ab6af.tar.bz2
pyramid-19ae96b97ea055c2e36c8fb86819c426b37ab6af.zip
revert restriction to eventonly predicates, allow a predicate to receive all args
Diffstat (limited to 'tests/test_integration.py')
-rw-r--r--tests/test_integration.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py
index 63a7088e9..7ca11e81e 100644
--- a/tests/test_integration.py
+++ b/tests/test_integration.py
@@ -213,7 +213,13 @@ class TestEventOnlySubscribers(IntegrationBase, unittest.TestCase):
res = self.testapp.get('/sendfoobar', status=200)
self.assertEqual(
sorted(res.body.split()),
- [b'foobar', b'foobar2', b'foobaryup', b'foobaryup2'],
+ [
+ b'foobar',
+ b'foobar2',
+ b'foobaryup',
+ b'foobaryup2',
+ b'foobaryup3',
+ ],
)