@ -57,7 +57,7 @@ def test_license_status_need_to_change(lic, days):
lic.status = consts.STATUS_NOT_PAID
lic.order_date = timezone.now().date() - timezone.timedelta(days)
lic.save()
if days > 5:
if days >= 5:
assert lic.is_status_need_to_change is True
else:
assert lic.is_status_need_to_change is False