Skip to content

Commit b10d124

Browse files
committed
this should do it
1 parent cbbcdb8 commit b10d124

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/integration/annotation_import/test_model_run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ def test_model_run(client, configured_project_with_label, rand_gen):
1616
name = rand_gen(str)
1717
config = {"batch_size": 100}
1818
model_run = model.create_model_run(name, config)
19-
print(model_run)
2019
assert model_run.name == name
21-
assert model_run.training_metadata["batch_size"] == config["batch_size"]
20+
assert model_run.training_metadata["batchSize"] == config["batch_size"]
2221
assert model_run.model_id == model.uid
2322
assert model_run.created_by_id == client.get_user().uid
2423

0 commit comments

Comments
 (0)