Skip to content

Commit 820da2c

Browse files
Fix test which builds index (#82)
1 parent 83bd449 commit 820da2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_bulk_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ def test17_ensure_index_is_created(self):
684684

685685
r = redis.Redis(host='localhost', port=6379, decode_responses=True)
686686
res = r.execute_command("GRAPH.EXPLAIN", graphname, 'MATCH (p:Person) WHERE p.age > 16 RETURN p')
687-
self.assertIn(' Index Scan | (p:Person)', res)
687+
self.assertIn(' Node By Index Scan | (p:Person)', res)
688688

689689
def test18_ensure_full_text_index_is_created(self):
690690
graphname = "index_full_text_test"

0 commit comments

Comments
 (0)