summaryrefslogtreecommitdiffstats
path: root/dashboard/src/booking/tests/test_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/booking/tests/test_models.py')
-rw-r--r--dashboard/src/booking/tests/test_models.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/dashboard/src/booking/tests/test_models.py b/dashboard/src/booking/tests/test_models.py
index c7fb25d..6170295 100644
--- a/dashboard/src/booking/tests/test_models.py
+++ b/dashboard/src/booking/tests/test_models.py
@@ -230,10 +230,3 @@ class BookingModelTestCase(TestCase):
booking.save()
except Exception:
self.fail("save() threw an exception")
- booking.end = booking.end + timedelta(weeks=2)
- self.assertRaises(ValueError, booking.save)
- booking.end = booking.end - timedelta(days=8)
- try:
- self.assertTrue(booking.save())
- except Exception:
- self.fail("save() threw an exception")