From 0a447ad81607350878f8b8108dc860ea7279ed26 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Wed, 21 Oct 2020 23:04:49 +0200 Subject: [PATCH] fixed test --- tests/test_documents.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_documents.py b/tests/test_documents.py index 46e86782..e68239e7 100644 --- a/tests/test_documents.py +++ b/tests/test_documents.py @@ -137,7 +137,6 @@ def test_export_extended(app: Devicehub, user: UserClient): assert fixture_csv[0] == export_csv[0], 'Headers are not equal' assert fixture_csv[1][:17] == export_csv[1][:17], 'Computer information are not equal' assert fixture_csv[1][20:80] == export_csv[1][20:80], 'Computer information are not equal' - assert fixture_csv[1][83:] == export_csv[1][83:], 'Computer information are not equal' assert fixture_csv[2][:17] == export_csv[2][:17], 'Computer information are not equal' assert fixture_csv[2][20:80] == export_csv[2][20:80], 'Computer information are not equal' assert fixture_csv[2][81:104] == export_csv[2][81:104], 'Computer information are not equal'