Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions tests/test_lib/test_cells_and_edges.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,7 @@ def test_parent_err():
except Exception as e:
msg = str(e)

# todo: revist this weird formatting stuff
expected = 'Invalid parent resolution -1 for cell {}.'
expected = expected.format(hex(h3.str_to_int(h)))
expected = f'Invalid parent resolution -1 for cell 0x{h}.'

assert msg == expected

Expand Down
Loading