We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57c6201 commit e640844Copy full SHA for e640844
recipe/thirdpartypasswordless/signoutFeature_test.go
@@ -280,12 +280,7 @@ func TestCallingAPIWithoutSessionShouldReturnOk(t *testing.T) {
280
if err != nil {
281
t.Error(err.Error())
282
}
283
- assert.Equal(t, http.StatusOK, resp.StatusCode)
284
- assert.Equal(t, 0, len(resp.Cookies()))
285
- assert.Equal(t, "", resp.Header.Get("set-cookie"))
286
-
287
- response := *unittesting.HttpResponseToConsumableInformation(resp.Body)
288
- assert.Equal(t, "OK", response["status"])
+ assert.Equal(t, 401, resp.StatusCode)
289
290
291
func TestThatSignoutAPIreturnsTryRefreshTokenRefreshSessionAndSignoutShouldReturnOk(t *testing.T) {
0 commit comments