From c52b614abbfa7ce3274c69726a2817415ce13e17 Mon Sep 17 00:00:00 2001 From: zxzxwu <92432172+zxzxwu@users.noreply.github.com> Date: Wed, 14 May 2025 08:27:06 +0000 Subject: [PATCH] Fix wrong smp_test parameters --- tests/smp_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/smp_test.py b/tests/smp_test.py index 1f461cab..89b6c882 100644 --- a/tests/smp_test.py +++ b/tests/smp_test.py @@ -35,7 +35,7 @@ from typing import Optional, Any # pylint: disable=invalid-name # ----------------------------------------------------------------------------- @pytest.fixture( - scope="session", params=["bumble.crypto._builtin", "bumble.crypto._cryptography"] + scope="session", params=["bumble.crypto.builtin", "bumble.crypto.cryptography"] ) def crypto_backend(request): backend = pytest.importorskip(request.param)