• Peter Leitzen's avatar
    Auto-correct response.status offenses · bdb12d07
    Peter Leitzen authored
    Replace
    
        expect(response.status).to eq(200)
        expect(response.status).not_to eq(200)
    
    with
    
        expect(response).to have_gitlab_http_status(:ok)
        expect(response).not_to have_gitlab_http_status(:ok)
    bdb12d07
events_controller_spec.rb 1.96 KB