fix: remove print statement from test case

This commit is contained in:
Sahil Khan 2019-01-04 12:57:34 +05:30
parent cda289dc27
commit 3ac57c756b

View File

@ -29,6 +29,5 @@ class TestUploadAttendance(unittest.TestCase):
for row in data:
if row[1] == employee:
filtered_data.append(row)
print(filtered_data)
for row in filtered_data:
self.assertTrue(getdate(row[3]) >= getdate(date_of_joining) and getdate(row[3]) <= getdate(relieving_date))