From 6c6777ef5ceb37f4eaf4cc1b0d87876828d32e27 Mon Sep 17 00:00:00 2001 From: akshya96 <87045294+akshya96@users.noreply.github.com> Date: Thu, 4 Dec 2025 11:44:25 -0800 Subject: [PATCH] Backport Fix adding additional public keys for tests in ent into ce/main (#11146) * resolving conflicts for backport * remove ent file --- vault/testing.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vault/testing.go b/vault/testing.go index 680284f97b..076c637d33 100644 --- a/vault/testing.go +++ b/vault/testing.go @@ -1967,6 +1967,9 @@ func (testCluster *TestCluster) newCore(t testing.TB, idx int, coreConfig *CoreC localConfig.Seal.SetCore(c) } + // Set test public keys in the core for tests that call license reloads + c.testSetTestPubKeys(localConfig.LicensingConfig.AdditionalPublicKeys) + return cleanupFunc, c, localConfig, handler }