Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arnasbr committed Oct 21, 2024
1 parent cc43af9 commit 52ad5ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/time_map_fast_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async def test_one_to_many(sdk: TravelTimeSdk):
transportation=Transportation(type="public_transport"),
)

assert len(results) > 0
assert len(results) == 2


@pytest.mark.asyncio
Expand All @@ -30,7 +30,7 @@ async def test_many_to_one(sdk: TravelTimeSdk):
one_to_many=False,
)

assert len(results) > 0
assert len(results) == 2


@pytest.mark.asyncio
Expand All @@ -44,7 +44,7 @@ async def test_one_to_many_geojson(sdk: TravelTimeSdk):
transportation=Transportation(type="public_transport"),
)

assert len(results) > 0
assert len(results) == 2


@pytest.mark.asyncio
Expand All @@ -59,4 +59,4 @@ async def test_many_to_one_geojson(sdk: TravelTimeSdk):
one_to_many=False,
)

assert len(results) > 0
assert len(results) == 2

0 comments on commit 52ad5ae

Please sign in to comment.