Skip to content

Commit caca084

Browse files
committed
make tests use long strings more often
1 parent 6a827a4 commit caca084

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

stringdtype/tests/test_stringdtype.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
@pytest.fixture
1919
def string_list():
20-
return ["abc", "def", "ghi", "A¢☃€ 😊", "Abc", "DEF"]
20+
return ["abc", "def", "ghi" * 10, "A¢☃€ 😊", "Abc", "DEF"]
2121

2222

2323
pd_param = pytest.param(
@@ -343,6 +343,13 @@ def test_pickle(dtype, string_list):
343343
"strings",
344344
[
345345
["left", "right", "leftovers", "righty", "up", "down"],
346+
[
347+
"left" * 10,
348+
"right" * 10,
349+
"leftovers" * 10,
350+
"righty" * 10,
351+
"up" * 10,
352+
],
346353
["🤣🤣", "🤣", "📵", "😰"],
347354
["🚜", "🙃", "😾"],
348355
["😹", "🚠", "🚌"],

0 commit comments

Comments
 (0)