From 64840daa0eded8067a9cdbd630091a02dbb1468c Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Wed, 8 Feb 2023 13:36:42 +0000 Subject: [PATCH] PEP8 in tests for data table --- tests/test_data_table.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_data_table.py b/tests/test_data_table.py index 1c5fd35e5..19580913f 100644 --- a/tests/test_data_table.py +++ b/tests/test_data_table.py @@ -378,11 +378,11 @@ async def test_update_coordinate_coordinate_doesnt_exist(): [ # Shorter than initial cell value, larger than label => width remains same ("A", "BB", 3), - # Larger than initial cell value, shorter than label => width remains that of label + # Larger than cell value, shorter than label => width remains that of label ("1234567", "1234", 7), - # Shorter than initial cell value, shorter than label => width remains same + # Shorter than cell value, shorter than label => width remains same ("12345", "123", 5), - # Larger than initial cell value, larger than label => width updates to new cell value + # Larger than cell value, larger than label => width updates to new cell value ("12345", "123456789", 9), ], )