Skip to content

Commit

Permalink
make initial_db return a tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-i committed May 22, 2024
1 parent 6266c3d commit a88336e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_scheduler/tests/test_orm.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class InitialJob(TestBase):
job_id = initial_job.job_id
session.close()

return TestBase, Session, job_id
return (TestBase, Session, job_id)


@pytest.fixture
Expand Down

0 comments on commit a88336e

Please sign in to comment.