From 56480b8a20db738c3d168c3eb0eb091028b21358 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Tue, 3 Dec 2024 15:46:53 -0600 Subject: [PATCH] Correct docstring of Container helper class The docstring stated that this container implemented legacy DLPack protocol, while it implements DLPack 1.0 --- dpctl/tests/test_usm_ndarray_dlpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpctl/tests/test_usm_ndarray_dlpack.py b/dpctl/tests/test_usm_ndarray_dlpack.py index 92531e21a1..7ffd85c1f3 100644 --- a/dpctl/tests/test_usm_ndarray_dlpack.py +++ b/dpctl/tests/test_usm_ndarray_dlpack.py @@ -750,7 +750,7 @@ def __dlpack_device__(self): class Container: - "Helper class implementing legacy `__dlpack__` protocol" + "Helper class implementing `__dlpack__` protocol version 1.0" def __init__(self, array): self._array = array