Skip to content

Commit 8e500e2

Browse files
committed
unittest: Apply linter
1 parent 34af96e commit 8e500e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/python/test_std_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
ref = [1, 2, 3]
1616
assert len(ref[1:2]) == 1 # sanity check
1717

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

0 commit comments

Comments
 (0)