add condition to validade the team

This commit is contained in:
Jociele Padilha 2022-04-13 10:32:01 +02:00
parent 31fd283d9d
commit 22b3e9a2e2
1 changed files with 3 additions and 1 deletions

View File

@ -162,7 +162,9 @@ func TestInfo(t *testing.T) {
if r.Header.Get("Authorization") != "Bearer "+token {
t.Errorf("authorization token is wrong or not provided")
}
w.WriteHeader(tc.inCode)
if tc.inTeam == "acid" {
w.WriteHeader(tc.inCode)
}
if _, err := fmt.Fprint(w, tc.in); err != nil {
t.Errorf("error writing teams api response %v", err)
}