Skip to content

Commit 34a573c

Browse files
authored
chore: remove unused fixtures (#212)
* chore: remove unused fixtures * lint
1 parent 95cc300 commit 34a573c

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

packages/toolbox-core/tests/test_tools.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -74,30 +74,6 @@ def static_client_header() -> dict[str, str]:
7474
return {"X-Client-Static": "client-static-value"}
7575

7676

77-
@pytest.fixture
78-
def sync_callable_client_header_value() -> str:
79-
return "client-sync-callable-value"
80-
81-
82-
@pytest.fixture
83-
def sync_callable_client_header(sync_callable_client_header_value) -> dict[str, Mock]:
84-
return {"X-Client-Sync": Mock(return_value=sync_callable_client_header_value)}
85-
86-
87-
@pytest.fixture
88-
def async_callable_client_header_value() -> str:
89-
return "client-async-callable-value"
90-
91-
92-
@pytest.fixture
93-
def async_callable_client_header(
94-
async_callable_client_header_value,
95-
) -> dict[str, AsyncMock]:
96-
return {
97-
"X-Client-Async": AsyncMock(return_value=async_callable_client_header_value)
98-
}
99-
100-
10177
# --- Fixtures for Auth Getters ---
10278

10379

0 commit comments

Comments
 (0)