Skip to content

Commit feebe8f

Browse files
authored
Update test_large_graph_indexer.py
1 parent f661f1c commit feebe8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/llm/test_large_graph_indexer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
# create possible nodes and edges for graph
2121
strkeys = string.ascii_letters + string.digits
22-
NODE_POOL = list({"".join(random.sample(strkeys, 10)) for i in range(1000)})
23-
EDGE_POOL = list({"".join(random.sample(strkeys, 10)) for i in range(50)})
22+
NODE_POOL = list({"".join(random.sample(strkeys, 10)).lower() for i in range(1000)})
23+
EDGE_POOL = list({"".join(random.sample(strkeys, 10)).lower() for i in range(50)})
2424

2525

2626
def featurize(s: str) -> int:

0 commit comments

Comments
 (0)