File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def test_client_fixture(pytester: pytest.Pytester) -> None:
3636 pytest_plugins = ["pytest_databases.docker.bigquery"]
3737
3838 def test(bigquery_client) -> None:
39- assert isinstance(bigquery_connection , bigquery.Client)
39+ assert isinstance(bigquery_client , bigquery.Client)
4040 """ )
4141
4242 result = pytester .runpytest ()
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def test_elasticsearch_7(pytester: pytest.Pytester) -> None:
1010 pytester .makepyfile ("""
1111 pytest_plugins = ["pytest_databases.docker.elastic_search"]
1212
13- def test(elasticsearch_7_service: ElasticsearchService ) -> None:
13+ def test(elasticsearch_7_service) -> None:
1414 with Elasticsearch7(
1515 hosts=[
1616 {
@@ -35,7 +35,7 @@ def test_elasticsearch_8(pytester: pytest.Pytester) -> None:
3535 pytester .makepyfile ("""
3636 pytest_plugins = ["pytest_databases.docker.elastic_search"]
3737
38- def test(elasticsearch_8_service: ElasticsearchService ) -> None:
38+ def test(elasticsearch_8_service) -> None:
3939 with Elasticsearch8(
4040 hosts=[
4141 {
You can’t perform that action at this time.
0 commit comments