Fix vet for tests

pull/10616/head
Chris Goller 2017-12-14 20:41:43 -06:00 committed by Michael Desa
parent 3bd701441e
commit 6c98cd49c4
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ func TestService_OrganizationID(t *testing.T) {
Public: false,
}, nil
default:
return nil, fmt.Errorf("Organization with ID %s not found", *q.ID)
return nil, fmt.Errorf("Organization with ID %d not found", *q.ID)
}
},
},
@ -481,7 +481,7 @@ func TestService_RemoveOrganization(t *testing.T) {
Name: "The Good Place",
}, nil
default:
return nil, fmt.Errorf("Organization with ID %s not found", *q.ID)
return nil, fmt.Errorf("Organization with ID %d not found", *q.ID)
}
},
},