We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a70fed4 commit 73ac226Copy full SHA for 73ac226
rest/cors_test.go
@@ -413,19 +413,19 @@ func TestCORSLoginOriginPerDatabase(t *testing.T) {
413
testCases := []struct {
414
name string
415
unsupportedOptions *db.UnsupportedOptions
416
- sameSite http.SameSite
+ sameSite http.SameSite
417
}{
418
{
419
name: "No unsupported options",
420
unsupportedOptions: nil,
421
- sameSite: http.SameSiteNoneMode,
+ sameSite: http.SameSiteNoneMode,
422
},
423
424
name: "With unsupported options",
425
unsupportedOptions: &db.UnsupportedOptions{
426
SameSiteCookie: base.Ptr("Strict"),
427
428
- sameSite: http.SameSiteStrictMode,
+ sameSite: http.SameSiteStrictMode,
429
430
}
431
for _, dbTestCases := range testCases {
0 commit comments