Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit bfb7297

Browse files
authored
test/pad_sequences: Add missing :
1 parent 56a506a commit bfb7297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sequence_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_pad_sequences_str():
5353
dtype='<U3')
5454
assert_equal(b, [['pad', '1'], ['1', '2'], ['1', '2']])
5555

56-
with pytest.raises(ValueError, match="`dtype` int32 is not compatible with ")
56+
with pytest.raises(ValueError, match="`dtype` int32 is not compatible with "):
5757
sequence.pad_sequences(a, maxlen=2, truncating='post', value='pad')
5858

5959

0 commit comments

Comments
 (0)