chore(cookie-affinity): Fix typos in tests

This commit is contained in:
avif 2024-04-02 21:50:51 +03:00
parent c1d3a92fe9
commit 7e5e2348ea

View file

@ -542,13 +542,13 @@ describe("Sticky", function()
assert.spy(s).was_called() assert.spy(s).was_called()
end 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) test_set_cookie_with(sticky_balanced, "/", true, true)
end) 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) test_set_cookie_with(sticky_balanced, "/", false, false)
end) 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) test_set_cookie_with(sticky_balanced, "/", nil, false)
end) end)
end) end)