Skip to content

Commit

Permalink
fix pokema api values
Browse files Browse the repository at this point in the history
  • Loading branch information
donotpush committed Jan 24, 2025
1 parent aec0d45 commit 3700850
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/load/sources/rest_api/test_rest_api_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def test_rest_api_source(destination_config: DestinationTestConfiguration, reque

assert table_counts.keys() == {"pokemon_list", "berry", "location"}

assert table_counts["pokemon_list"] == 1302
assert table_counts["pokemon_list"] == 1304
assert table_counts["berry"] == 64
assert table_counts["location"] == 1036
assert table_counts["location"] == 1039


@pytest.mark.parametrize(
Expand Down
4 changes: 2 additions & 2 deletions tests/sources/rest_api/test_rest_api_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ def test_rest_api_source(destination_name: str, invocation_type: str) -> None:

assert table_counts.keys() == {"pokemon_list", "berry", "location"}

assert table_counts["pokemon_list"] == 1302
assert table_counts["pokemon_list"] == 1304
assert table_counts["berry"] == 64
assert table_counts["location"] == 1036
assert table_counts["location"] == 1039


@pytest.mark.parametrize("destination_name", ALL_DESTINATIONS)
Expand Down

0 comments on commit 3700850

Please sign in to comment.