fix: Error in test setUp

This commit is contained in:
Pranav Nachanekar 2019-09-24 16:07:41 +05:30
parent d45c12b382
commit 9f86022c2b

View File

@ -35,7 +35,7 @@ def create_test_appointments():
return test_appointment
class TestAppointment(unittest.TestCase):
test_appointment,test_lead = None
test_appointment = test_lead = None
def setUp(self):
test_lead = create_test_lead()
test_appointment = test_create_test_appointments()