Skip to content

Commit a56ff39

Browse files
committed
Glad I removed yolo from print
1 parent 2307963 commit a56ff39

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

terminusdb_client/tests/integration_tests/test_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def test_happy_crazy_path(docker_url):
9292
assert client.db is None
9393
assert "test happy path" not in client.list_databases()
9494

95+
9596
def test_add_get_remove_org(docker_url):
9697
# create client
9798
client = Client(docker_url, user_agent=test_user_agent)
@@ -101,14 +102,14 @@ def test_add_get_remove_org(docker_url):
101102
assert client._connected
102103
# test create db
103104
client.create_organization("testOrg")
104-
print("YOLOOO")
105105
org = client.get_organization("testOrg")
106106
assert org['name'] == 'testOrg'
107107
client.delete_organization("testOrg")
108108
with pytest.raises(DatabaseError):
109109
# The org shouldn't exist anymore
110110
client.get_organization("testOrg")
111111

112+
112113
def test_add_get_remove_user(docker_url):
113114
# create client
114115
client = Client(docker_url, user_agent=test_user_agent)

0 commit comments

Comments
 (0)