Skip to content

Commit cf37f2d

Browse files
authored
Remove TestParam warning (#1227)
1 parent f30b94d commit cf37f2d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/integration/param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import TypedDict
22

33

4-
class TestParam(TypedDict):
4+
class ProviderParam(TypedDict):
55
provider_name: str
66

77
# How many of the top collections we will test, e.g. top 3 collections

tests/integration/test_cloud_download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
import pytest
1010
from earthaccess import Auth, DataGranules, Store
1111

12-
from .param import TestParam
12+
from .param import ProviderParam
1313
from .sample import get_sample_granules, top_collections_for_provider
1414

1515
logger = logging.getLogger(__name__)
1616

1717

18-
daac_list: list[TestParam] = [
18+
daac_list: list[ProviderParam] = [
1919
{
2020
"provider_name": "NSIDC_CPRD",
2121
"n_for_top_collections": 3,

tests/integration/test_cloud_open.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
import pytest
66
from earthaccess import Auth, DataGranules, Store
77

8-
from .param import TestParam
8+
from .param import ProviderParam
99
from .sample import get_sample_granules, top_collections_for_provider
1010

1111
logger = logging.getLogger(__name__)
1212

1313

14-
daacs_list: list[TestParam] = [
14+
daacs_list: list[ProviderParam] = [
1515
{
1616
"provider_name": "NSIDC_CPRD",
1717
"n_for_top_collections": 2,

0 commit comments

Comments
 (0)