Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 59b78c6

Browse files
author
Alex Walker
authored
Fix error in test-deployment-pip (#187)
## What is the goal of this PR? There was an error in test-deployment-pip caused by old syntax, which we fixed. ## What are the changes implemented in this PR? Fix error in test-deployment-pip
1 parent 68ebb2d commit 59b78c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/deployment/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def setUp(self):
4747
def test_database(self):
4848
dbs = client.databases().all()
4949
if "grakn" in dbs:
50-
client.databases().delete("grakn")
50+
client.databases().get("grakn").delete()
5151
client.databases().create("grakn")
5252
dbs = client.databases().all()
5353
self.assertTrue("grakn" in dbs)

0 commit comments

Comments
 (0)