Skip to content

Commit 89fd178

Browse files
chore(internal): remove test without asserts (#109)
1 parent db6c536 commit 89fd178

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

tests/test_client.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,6 @@ def test_default_headers_option(self) -> None:
349349
assert request.headers.get("x-foo") == "stainless"
350350
assert request.headers.get("x-stainless-lang") == "my-overriding-header"
351351

352-
def test_validate_headers(self) -> None:
353-
client = Steel(base_url=base_url, steel_api_key=steel_api_key, _strict_response_validation=True)
354-
355352
def test_default_query_option(self) -> None:
356353
client = Steel(
357354
base_url=base_url,
@@ -1142,9 +1139,6 @@ def test_default_headers_option(self) -> None:
11421139
assert request.headers.get("x-foo") == "stainless"
11431140
assert request.headers.get("x-stainless-lang") == "my-overriding-header"
11441141

1145-
def test_validate_headers(self) -> None:
1146-
client = AsyncSteel(base_url=base_url, steel_api_key=steel_api_key, _strict_response_validation=True)
1147-
11481142
def test_default_query_option(self) -> None:
11491143
client = AsyncSteel(
11501144
base_url=base_url,
@@ -1658,7 +1652,7 @@ def test_get_platform(self) -> None:
16581652
import threading
16591653
16601654
from steel._utils import asyncify
1661-
from steel._base_client import get_platform
1655+
from steel._base_client import get_platform
16621656
16631657
async def test_main() -> None:
16641658
result = await asyncify(get_platform)()

0 commit comments

Comments
 (0)