test(commits): cleanup

This commit is contained in:
izzy lyseggen
2021-01-19 09:26:05 +00:00
parent 25c4b35eb3
commit 5b458c630e
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -19,12 +19,11 @@ def stream_id(client):
def test_create(client, stream_id, commit):
commit_id = client.commit.create(
commit.id = client.commit.create(
stream_id=stream_id, object_id="object123", message=commit.message
)
commit.id = commit_id
assert isinstance(commit_id, str)
assert isinstance(commit.id, str)
def test_get(client, stream_id, commit):