Skip to content

Commit

Permalink
linting & formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanSoley committed Apr 11, 2024
1 parent 2371e9b commit a956047
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/unit/client/test_experiment_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,8 +444,7 @@ def test_get_parent_experiments(project_client):

def test_get_relative_experiments_none(project_client):
project = project_client
parent = project.log_experiment(name="parent")
child = project.log_experiment(name="child")
experiment = project.log_experiment()

assert child.get_child_experiments() == []
assert child.get_parent_experiments() == []
assert experiment.get_child_experiments() == []
assert experiment.get_parent_experiments() == []

0 comments on commit a956047

Please sign in to comment.