Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbangia committed Aug 30, 2023
1 parent 33f50b9 commit 3c3961f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def test_camelize():
assert camelize("aFieldName") == "aFieldName"
assert camelize(None) is None


@responses.activate
def test_get_recording_attachments():
responses.add(
Expand All @@ -93,10 +94,10 @@ def test_get_recording_attachments():
"crc": "test_crc",
"fingerprint": "test_fingerprint",
}
]
],
)

client = Client("test")
attachments = client.get_attachments(recording_id="test_recording")
assert len(attachments) == 1
assert attachments[0]["name"] == "name"
assert attachments[0]["name"] == "name"

0 comments on commit 3c3961f

Please sign in to comment.