Skip to content

Commit

Permalink
unittest: Apply linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisv committed Jan 7, 2025
1 parent 34af96e commit 8e500e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittest/python/test_std_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
ref = [1, 2, 3]
assert len(ref[1:2]) == 1 # sanity check

assert len(_ints_slice) == 2, "Slice size should be 1, got %d" % len(_ints_slice)
assert len(_ints_slice) == 2, f"Slice size should be 1, got {len(_ints_slice)}"
assert _ints_slice[0] == 2
assert _ints_slice[1] == 3

Expand Down

0 comments on commit 8e500e2

Please sign in to comment.