diff --git a/rootfs/etc/nginx/lua/test/balancer/sticky_test.lua b/rootfs/etc/nginx/lua/test/balancer/sticky_test.lua index e3349f887..37c2c2f93 100644 --- a/rootfs/etc/nginx/lua/test/balancer/sticky_test.lua +++ b/rootfs/etc/nginx/lua/test/balancer/sticky_test.lua @@ -542,13 +542,13 @@ describe("Sticky", function() assert.spy(s).was_called() end - it("returns a secure cookie with Partitioned when user specifies partitioned=true", function() + it("returns a cookie with Partitioned when user specifies partitioned=true", function() test_set_cookie_with(sticky_balanced, "/", true, true) end) - it("returns a secure cookie with without Partitioned when user specifies partitioned=false", function() + it("returns a cookie without Partitioned when user specifies partitioned=false", function() test_set_cookie_with(sticky_balanced, "/", false, false) end) - it("returns a secure cookie with without Partitioned when user does not specify partitioned", function() + it("returns a cookie without Partitioned when user does not specify partitioned", function() test_set_cookie_with(sticky_balanced, "/", nil, false) end) end)