Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Merge 1e92c0d into e23685b
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot-preview[bot] committed Apr 26, 2021
2 parents e23685b + 1e92c0d commit f519895
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
attrs==20.3.0
bcrypt==3.2.0
boto3==1.17.49
botocore==1.20.49
boto3==1.17.57
botocore==1.20.57
canonicaljson-rs==0.3.0
certifi==2020.12.5
cffi==1.14.5
Expand Down Expand Up @@ -35,7 +35,7 @@ python-dateutil==2.8.1
repoze.sendmail==4.4.1
requests==2.25.1
requests-hawk==1.1.0
s3transfer==0.3.6
s3transfer==0.4.2
six==1.15.0
transaction==3.0.1
translationstring==1.4
Expand Down
9 changes: 4 additions & 5 deletions tests/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,11 @@ def test_resource_changed_is_triggered_for_resign(self):
self._sign()
before = len(listener.received)

self.app.patch_json(self.source_collection,
{"data": {"status": "to-resign"}},
headers=self.headers)
self.app.patch_json(
self.source_collection, {"data": {"status": "to-resign"}}, headers=self.headers
)

events = [e for e in listener.received[before:]
if e.payload["collection_id"] == "scid"]
events = [e for e in listener.received[before:] if e.payload["collection_id"] == "scid"]
assert len(events) == 2
event_tosign = events[0]
assert len(event_tosign.impacted_records) == 1
Expand Down

0 comments on commit f519895

Please sign in to comment.