Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcalvo committed Jun 14, 2024
1 parent 2082e12 commit 6cfcf43
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async def test_create_dataset_with_overlap_distribution_using_invalid_min_submit
assert response.status_code == 422
assert (await db.execute(select(func.count(Dataset.id)))).scalar_one() == 0

async def test_create_dataset_with_invalid_distribution_stategry(self, db: AsyncSession, async_client: AsyncClient, owner_auth_header: dict):
async def test_create_dataset_with_invalid_distribution_strategy(self, db: AsyncSession, async_client: AsyncClient, owner_auth_header: dict):
workspace = await WorkspaceFactory.create()

response = await async_client.post(
Expand All @@ -133,7 +133,5 @@ async def test_create_dataset_with_invalid_distribution_stategry(self, db: Async
},
)

import pdb; pdb.set_trace()

assert response.status_code == 422
assert (await db.execute(select(func.count(Dataset.id)))).scalar_one() == 0

0 comments on commit 6cfcf43

Please sign in to comment.