Merge pull request #16338 from sahil28297/remove_print_from_test_case

fix: Remove print statement from test case
This commit is contained in:
Sagar Vora 2019-01-04 13:31:00 +05:30 committed by GitHub
commit 53cac1b616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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))