diff --git a/unittests/test_table_converter.py b/unittests/test_table_converter.py index 436d635992d156f002279251d890e5c5657f52a1..230687444bf72998cd0af9ac9d0e731678791263 100644 --- a/unittests/test_table_converter.py +++ b/unittests/test_table_converter.py @@ -87,10 +87,10 @@ class TableTest(unittest.TestCase): # NaN is hard to compare, so we replace it by -999 # autopep8: off assert result.replace(to_replace=nan, value=-999).to_dict() == { - 'p1': {0: 1, 1: -999, 2: -999 }, # noqa: E202 - 'p3': {0: 23, 1: [30, 31], 2: -999 }, # noqa: E202 - 'p4': {0: [1], 1: [40.0, 41.0], 2: -999 }, # noqa: E202 - 'p2': {0: -999, 1: [20, 21], 2: -999 }, # noqa: E202 + 'p1': {0: 1, 1: -999, 2: -999}, # noqa: E202 + 'p3': {0: 23, 1: [30, 31], 2: -999}, # noqa: E202 + 'p4': {0: [1], 1: [40.0, 41.0], 2: -999}, # noqa: E202 + 'p2': {0: -999, 1: [20, 21], 2: -999}, # noqa: E202 'p5': {0: -999, 1: -999, 2: [50, 51]} } # autopep8: on