Skip to content

Commit

Permalink
test: fix spec/01-unit/19-hybrid/03-compat_spec.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
catbro666 committed Feb 20, 2025
1 parent e7044ba commit 9215634
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/01-unit/19-hybrid/03-compat_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,7 @@ describe("kong.clustering.compat", function()
local jwk_pub, jwk_priv = helpers.generate_keys("JWK")
local pem_pub, pem_priv = helpers.generate_keys("PEM")
local jwk = merge(cjson_decode(jwk_pub), cjson_decode(jwk_priv))
jwk.x5t = "x5t1"


assert(declarative.load_into_db({
Expand All @@ -453,7 +454,7 @@ describe("kong.clustering.compat", function()
id = "f0383152-a6b4-4351-983b-1844b14170c1",
kid = jwk.kid,
name = "key1",
x5t = "x5t1",
x5t = jwk.x5t,
jwk = cjson_encode(jwk)
},
key2 = {
Expand Down

0 comments on commit 9215634

Please # to comment.