From 0fde1d131423adb48ab5aa39e30fd3fe093333de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20P=C3=A9dron?= Date: Tue, 21 Oct 2025 13:02:27 +0200 Subject: [PATCH] unit_access_control_authn_authz_context_propagation_SUITE: Declare test auth backend module [Why] rabbit_access_control now ensures all configured auth backend modules are provided by `rabbit` or an enabled plugin. This is not the case for this testsuite's own auth backend. [How] Declare `rabbit_auth_backend_context_propagation_mock` as a test auth backend module. --- ...it_access_control_authn_authz_context_propagation_SUITE.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deps/rabbit/test/unit_access_control_authn_authz_context_propagation_SUITE.erl b/deps/rabbit/test/unit_access_control_authn_authz_context_propagation_SUITE.erl index 1d4182df5360..52a1d5c948f6 100644 --- a/deps/rabbit/test/unit_access_control_authn_authz_context_propagation_SUITE.erl +++ b/deps/rabbit/test/unit_access_control_authn_authz_context_propagation_SUITE.erl @@ -43,7 +43,8 @@ end_per_group(_, Config) -> init_per_testcase(Testcase, Config) -> AuthConfig = {rabbit, [ - {auth_backends, [rabbit_auth_backend_context_propagation_mock]} + {auth_backends, [rabbit_auth_backend_context_propagation_mock]}, + {test_auth_backends, [rabbit_auth_backend_context_propagation_mock]} ] }, rabbit_ct_helpers:testcase_started(Config, Testcase),