diff --git a/helpdesk/tests/test_time_spent_auto.py b/helpdesk/tests/test_time_spent_auto.py index ac3a5a0b..792a3843 100644 --- a/helpdesk/tests/test_time_spent_auto.py +++ b/helpdesk/tests/test_time_spent_auto.py @@ -319,4 +319,7 @@ class TimeSpentAutoTestCase(TestCase): # total ticket time for followups is 5 hours self.assertEqual(latest_fup.date - ticket.created, timedelta(hours=5)) # calculated time spent with 2 hours exclusion is 3 hours - self.assertEqual(ticket.time_spent.total_seconds(), 3 * 3600.0) \ No newline at end of file + self.assertEqual(ticket.time_spent.total_seconds(), 3 * 3600.0) + + # remove queues exclusion + helpdesk_settings.FOLLOWUP_TIME_SPENT_EXCLUDE_QUEUES = () \ No newline at end of file