remove instance check

This commit is contained in:
harisreedhar
2026-02-07 14:57:21 +05:30
committed by henryruhs
parent bac8befad7
commit ff0bf31c86
-2
View File
@@ -36,7 +36,6 @@ def test_get_metrics(test_client : TestClient) -> None:
get_metrics_body = get_metrics_response.json()
assert 'execution_devices' in get_metrics_body
assert isinstance(get_metrics_body.get('execution_devices'), list)
assert get_metrics_response.status_code == 200
@@ -54,4 +53,3 @@ def test_websocket_metrics(test_client : TestClient) -> None:
metrics_set = websocket.receive_json()
assert 'execution_devices' in metrics_set
assert isinstance(metrics_set.get('execution_devices'), list)