Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zubenkoivan committed Apr 22, 2022
1 parent fc34560 commit dd1196a
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/integration/test_kube_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,16 +400,6 @@ async def test_get_raw_pods_all_namespaces(
p["metadata"]["name"].startswith("kube-") for p in pods
) # kube-system pods

async def test_get_node(self, kube_client: KubeClient, kube_node: str) -> None:
node = await kube_client.get_node(kube_node)

assert node

async def test_get_nodes(self, kube_client: KubeClient, kube_node: str) -> None:
nodes = await kube_client.get_nodes()

assert kube_node in [n.name for n in nodes]

@pytest.fixture
async def create_pod(
self, pod_factory: Callable[..., Awaitable[PodDescriptor]]
Expand Down

0 comments on commit dd1196a

Please sign in to comment.