From b68d653a108967f350e8a1349d4c7652b88d9899 Mon Sep 17 00:00:00 2001 From: Matheus Felipe <50463866+matheusfelipeog@users.noreply.github.com> Date: Mon, 17 Jan 2022 02:53:35 -0300 Subject: [PATCH] Remove whitespace --- scripts/tests/test_validate_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests/test_validate_format.py b/scripts/tests/test_validate_format.py index 4d32c80c..417b3e5d 100644 --- a/scripts/tests/test_validate_format.py +++ b/scripts/tests/test_validate_format.py @@ -53,7 +53,7 @@ class TestValidadeFormat(unittest.TestCase): categories, category_line_num = result self.assertIsInstance(categories, dict) self.assertIsInstance(category_line_num, dict) - + expected_result = ({'A': ['AA', 'AB'], 'B': ['BA', 'BB']}, {'A': 0, 'B': 6}) for res, ex_res in zip(result, expected_result):