Skip to content

Commit 1deed0e

Browse files
committed
test: 🚨 fix flaky string pattern tests
1 parent 57bedc2 commit 1deed0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎tests/test_command_search.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async def test_command_search_returns_where_stringobjects(tile38: Tile38) -> Non
7878
key = random_string()
7979
oid = random_string()
8080
string = random_string()
81-
pattern = string[:1] + "*"
81+
pattern = string[:3] + "*"
8282

8383
await (
8484
tile38
@@ -128,7 +128,7 @@ async def test_command_search_returns_wherein_stringobjects(tile38: Tile38) -> N
128128
key = random_string()
129129
oid = random_string()
130130
string = random_string()
131-
pattern = string[:1] + "*"
131+
pattern = string[:3] + "*"
132132

133133
await (
134134
tile38

0 commit comments

Comments
 (0)