From e75bfd4cabcd2d23a73d2ce12ae47cef6c603eb6 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Thu, 21 Nov 2024 08:48:58 -0800 Subject: [PATCH] Fix requires_rust to be consistent with environment variable --- test/test_other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_other.py b/test/test_other.py index bbef918ae4fa8..2fe64350d0682 100644 --- a/test/test_other.py +++ b/test/test_other.py @@ -174,7 +174,7 @@ def requires_scons(func): def requires_rust(func): assert callable(func) - return requires_tool('cargo')(func) + return requires_tool('rust')(func) def requires_pkg_config(func):