diff --git a/qa/L0_grpc/python_grpc_aio_test.py b/qa/L0_grpc/python_grpc_aio_test.py index ba43b36abb..6466432c6b 100755 --- a/qa/L0_grpc/python_grpc_aio_test.py +++ b/qa/L0_grpc/python_grpc_aio_test.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# Copyright 2022-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -100,9 +100,11 @@ async def test_get_system_shared_memory_status(self): async def test_register_system_shared_memory(self): with self.assertRaisesRegex( InferenceServerException, - "\[StatusCode\.INTERNAL\] Unable to open shared memory region: ''", + "\[StatusCode\.INTERNAL\] Unable to open shared memory region: '/test_shm'", ): - await self._triton_client.register_system_shared_memory("", "", 0) + await self._triton_client.register_system_shared_memory( + "test_shm", "/test_shm", 0 + ) async def test_unregister_system_shared_memory(self): await self._triton_client.unregister_system_shared_memory()