Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkeyDo committed Jan 14, 2025
1 parent f277d18 commit c0ce031
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions listenbrainz/tests/integration/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ def test_export(self):
self.assertEqual(expected["track_metadata"]["release_name"], received["track_metadata"]["release_name"])
self.assertEqual(expected["listened_at"], received["listened_at"])
# The test data used in send_listens cannot have an inserted_at prop as that is not a valid listen format
self.assertNotIn("inserted_at",expected)
self.assertNotIn("inserted_at", expected)
# However inserted_at should be part of the exported listen data
self.assertIn("inserted_at",received)
self.assertIn("inserted_at", received)
if received["track_metadata"]["track_name"] == "Sister":
self.assertEqual({
"caa_id": self.recording["release_data"]["caa_id"],
Expand Down

0 comments on commit c0ce031

Please sign in to comment.