Skip to content

Commit 86066fd

Browse files
committed
Fix functional tests
1 parent 4b773e1 commit 86066fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kinto_http/tests/functional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def test_group_creation_if_not_exists(self):
142142
def test_group_creation_if_bucket_does_not_exist(self):
143143
with pytest.raises(KintoException) as e:
144144
self.client.create_group(id="payments", bucket="mozilla", data={"members": ["blah"]})
145-
assert str(e).endswith(
145+
assert str(e.value).endswith(
146146
"PUT /v1/buckets/mozilla/groups/payments - "
147147
"403 Unauthorized. Please check that the "
148148
"bucket exists and that you have the permission "

0 commit comments

Comments
 (0)