chore(cookie-affinity): Fix typos in tests
This commit is contained in:
parent
c1d3a92fe9
commit
7e5e2348ea
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue