Skip to content

Commit 5e5f63c

Browse files
committed
fix test
1 parent f99eb28 commit 5e5f63c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/ordering/tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def test_new_order_round_batch_needed(self):
273273
order_rounds = create_orderround_batch()
274274
self.assertTrue(len(order_rounds) > 0)
275275
last_day = get_last_day_of_next_quarter()
276-
self.assertTrue(last_day < order_rounds[-1].open_for_orders.date() + timedelta(days=7))
276+
self.assertTrue(last_day < order_rounds[-1].open_for_orders.date() + timedelta(days=14))
277277

278278
def test_no_new_order_round_batch_needed(self):
279279
"""Test that no new order round batch is created when the last round is more than 30 days away."""

0 commit comments

Comments
 (0)