Update SDK dependency (#177)

* Update dependencies

* Update dependencies

* Update dependencies

* Update dependencies

---------

Co-authored-by: Henrique Santos <henrique.santos@freiheit.com>
This commit is contained in:
Henrique Santos 2023-12-21 09:33:36 +00:00 committed by GitHub
parent 506d1afdc2
commit c7effac5c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
62 changed files with 382 additions and 382 deletions

View file

@ -12,13 +12,13 @@ import (
func TestMapFields(t *testing.T) {
tests := []struct {
description string
input *argus.Credential
input *argus.Credentials
expected Model
isValid bool
}{
{
"ok",
&argus.Credential{
&argus.Credentials{
Username: utils.Ptr("username"),
Password: utils.Ptr("password"),
},
@ -39,7 +39,7 @@ func TestMapFields(t *testing.T) {
},
{
"response_fields_nil_fail",
&argus.Credential{
&argus.Credentials{
Password: nil,
Username: nil,
},
@ -48,7 +48,7 @@ func TestMapFields(t *testing.T) {
},
{
"no_resource_id",
&argus.Credential{},
&argus.Credentials{},
Model{},
false,
},