From 216e748594cd7ae8a1e72095d7c457ab28af7709 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Wed, 21 Oct 2020 23:18:53 +0200 Subject: [PATCH] fixed test --- tests/test_documents.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_documents.py b/tests/test_documents.py index d90dcc36..cb40802f 100644 --- a/tests/test_documents.py +++ b/tests/test_documents.py @@ -139,8 +139,6 @@ def test_export_extended(app: Devicehub, user: UserClient): assert fixture_csv[1][20:80] == export_csv[1][20:80], '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][105:128] == export_csv[2][105:128], 'Computer information are not equal' - assert fixture_csv[2][129:] == export_csv[2][129:], 'Computer information are not equal' @pytest.mark.mvp