Skip to content

Commit

Permalink
Fix broken playtime entries test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbernstein committed Oct 1, 2024
1 parent b90936f commit 71ec86e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/manager/scripts/test_playtime_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,11 +576,13 @@ def test_do_run(
# We're using the RecursiveEquivalencyCache, so must refresh it.
EquivalentIdentifiersCoverageProvider(db.session).run()

# one month + 3 days ago
playtime(
db.session, identifier, collection, library, dt1m(3), 1, loan_identifier
)
# one month + 4 days ago
playtime(
db.session, identifier, collection, library, dt1m(31), 2, loan_identifier
db.session, identifier, collection, library, dt1m(4), 2, loan_identifier
)
playtime(
db.session, identifier, collection, library, dt1m(-31), 60, loan_identifier
Expand Down

0 comments on commit 71ec86e

Please sign in to comment.