diff --git a/tests/component/system/test_device.py b/tests/component/system/test_device.py index e76df6f1c..a6c79dcb6 100644 --- a/tests/component/system/test_device.py +++ b/tests/component/system/test_device.py @@ -1,3 +1,6 @@ +import pytest + +from nidaqmx.errors import RpcError from nidaqmx.system import Device @@ -35,6 +38,9 @@ def test___self_test_device___no_errors(any_x_series_device: Device) -> None: any_x_series_device.self_test_device() +@pytest.mark.grpc_xfail( + reason="Requires NI gRPC Device Server version 2.5 or later", raises=RpcError +) def test___restore_last_ext_cal_const___no_errors(sim_x_series_device: Device) -> None: sim_x_series_device.restore_last_ext_cal_const()