From a0c6793cf63eede5a3f9ae2ec4058c3418717f79 Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Sun, 27 Dec 2020 18:28:02 +0000 Subject: [PATCH] Why does this work Indeed, it may not --- RIGS/tests/test_interaction.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/RIGS/tests/test_interaction.py b/RIGS/tests/test_interaction.py index 71574203..6167ab82 100644 --- a/RIGS/tests/test_interaction.py +++ b/RIGS/tests/test_interaction.py @@ -578,7 +578,9 @@ class TestCalendar(BaseRigboardTest): specialEvent.start_date.strftime('%Y%m%d') + 'T' + specialEvent.start_time.strftime( '%H%M%S')) self.assertContains(response, - specialEvent.end_date.strftime('%Y%m%d') + 'T' + specialEvent.end_time.strftime('%H%M%S')) + specialEvent.end_date.strftime('%Y%m%d')) + self.assertContains(response, + specialEvent.end_time.strftime('%H%M%S')) # Only non rigs self.page.toggle_filter('rig')