Adding an explanatory comment to a test

This commit is contained in:
Darren Burns
2023-02-14 11:45:27 +00:00
parent 091adc9d8e
commit c37061cf18

View File

@@ -357,8 +357,8 @@ async def test_get_row():
assert table.get_row(first_row) == [2, 4, 1] assert table.get_row(first_row) == [2, 4, 1]
assert table.get_row(second_row) == [3, 2, 1] assert table.get_row(second_row) == [3, 2, 1]
# Even if row positions change, keys should always refer to same rows.
table.sort(b) table.sort(b)
assert table.get_row(first_row) == [2, 4, 1] assert table.get_row(first_row) == [2, 4, 1]
assert table.get_row(second_row) == [3, 2, 1] assert table.get_row(second_row) == [3, 2, 1]