Skip to content

Commit 561a9bc

Browse files
committed
fix test
1 parent 2e4477c commit 561a9bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_mindsdb/test_knowledgebase_index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_create_knowledge_base_index(self):
1111
ast = parse_sql(sql)
1212
print(ast)
1313
expected_ast = CreateKnowledgeBaseIndex(
14-
name=Identifier('my_index'),
14+
name=Identifier('my_kb'),
1515
)
1616
assert str(ast).lower() == sql.lower()
1717
assert ast.to_tree() == expected_ast.to_tree()

0 commit comments

Comments
 (0)