1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-17 00:17:40 +02:00

Rename RunCookieTests to RunSessionTests

This commit is contained in:
Joel Speed
2019-05-07 13:58:15 +01:00
parent 02e80b7aab
commit 65302ed34b

View File

@ -150,7 +150,7 @@ var _ = Describe("NewSessionStore", func() {
}) })
} }
RunCookieTests := func() { RunSessionTests := func() {
Context("with default options", func() { Context("with default options", func() {
BeforeEach(func() { BeforeEach(func() {
var err error var err error
@ -235,7 +235,7 @@ var _ = Describe("NewSessionStore", func() {
}) })
Context("the cookie.SessionStore", func() { Context("the cookie.SessionStore", func() {
RunCookieTests() RunSessionTests()
}) })
}) })