diff --git a/tests/test_client.py b/tests/test_client.py
index 8a14dd5fe4a2428021a78487fd748f3f1427b4b9..52c28f3475264116ad6ec243e9c64c1963b4f8b9 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -263,12 +263,11 @@ def test_pullover(auth_test_client, collection_id, comment, name):
     assert isinstance(resp, models.Data)
     assert resp is not None
 
-@pytest.mark.skip(reason="Test not possible as volume endpoint hidden from OpenAPI spec")
 def test_list_volumes(auth_test_client):
     """
     Test the volume list endpoint.
     """
-    volumes = auth_test_client.list_data()
+    volumes = auth_test_client.list_volumes()
     assert len(volumes) > 0
     assert isinstance(volumes, list)
     assert all((isinstance(v, models.Volume) for v in volumes))
\ No newline at end of file