From f4a9ba2db8102bcdd03723f5550c0e0729038db0 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Fri, 9 Feb 2018 01:16:27 -0500 Subject: [PATCH] Remove reference to deleted function. --- allianceauth/services/modules/seat/tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/allianceauth/services/modules/seat/tests.py b/allianceauth/services/modules/seat/tests.py index 4868ce03..5de5d5d0 100644 --- a/allianceauth/services/modules/seat/tests.py +++ b/allianceauth/services/modules/seat/tests.py @@ -152,7 +152,6 @@ class SeatViewsTestCase(TestCase): self.assertContains(response, expected_username) seat_user = SeatUser.objects.get(user=self.member) self.assertEqual(seat_user.username, expected_username) - self.assertTrue(manager.synchronize_eveapis.called) @mock.patch(MODULE_PATH + '.tasks.SeatManager') def test_deactivate(self, manager):