Skip to content

Commit

Permalink
rebase main
Browse files Browse the repository at this point in the history
  • Loading branch information
northdpole committed Mar 17, 2024
1 parent b99faf0 commit 135a08e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/consumers/defectdojo/client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package client

import (
"encoding/json"
"io/ioutil"
"io"
"net/http"
"net/http/httptest"
"testing"
Expand Down Expand Up @@ -47,7 +47,7 @@ func TestCreateFinding(t *testing.T) {
FalseP: false,
Severity: "High",
Description: "description",
Active: false,
Active: true,
Verified: false,
Line: 1,
NumericalSeverity: "C:I",
Expand All @@ -70,7 +70,7 @@ func TestCreateFinding(t *testing.T) {
[]string{"tests"},
1,
1,
0, 0, false, false, false, 3.9)
0, 0, false, false, 3.9)
require.NoError(t, err)
assert.True(t, called)
}
Expand Down

0 comments on commit 135a08e

Please sign in to comment.