Skip to content

Commit a862e7c

Browse files
committed
fixed mistake (endpoint is POST)
1 parent 55f6465 commit a862e7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/test/api/endpoints/test_authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_authentication_required():
1818
({"POST"}, "/authentication/register"),
1919
({"GET"}, "/authentication/oidc/login"),
2020
({"GET"}, "/authentication/oidc/callback"),
21-
({"GET"}, "/authentication/sync-session"),
21+
({"POST"}, "/authentication/sync-session"),
2222
# This route requires authentication, but does so
2323
# in a manner we couldn't easily verify in the test.
2424
({"GET"}, "/user/me"),

0 commit comments

Comments
 (0)