Skip to content

Commit

Permalink
allow for WEEKEND_QUOTA == WEEKDAY_QUOTA
Browse files Browse the repository at this point in the history
This is needed to pass tests with the new 20/20 quotas.
  • Loading branch information
cg505 committed Sep 30, 2019
1 parent ac2046f commit 50f5611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/printing/quota_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_daily_quota(time, expected):
def test_quotas_are_sane():
assert SEMESTERLY_QUOTA > 0
assert WEEKDAY_QUOTA > 0
assert WEEKEND_QUOTA > WEEKDAY_QUOTA
assert WEEKEND_QUOTA >= WEEKDAY_QUOTA
assert WEEKDAY_QUOTA < SEMESTERLY_QUOTA
assert WEEKEND_QUOTA < SEMESTERLY_QUOTA

Expand Down

0 comments on commit 50f5611

Please sign in to comment.