Skip to content

Commit

Permalink
Fix pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Korjen97 committed Aug 20, 2024
1 parent 9f7cbbb commit d406d06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/commands/scan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ func TestAddSCSScan_ResubmitWithOutScorecardFlags_ShouldPass(t *testing.T) {
{
Type: commonParams.ScsType,
Value: map[string]interface{}{
configTwoms: "true",
configTwoms: trueString,
ScsScoreCardType: falseString,
},
},
Expand All @@ -692,7 +692,7 @@ func TestAddSCSScan_ResubmitWithOutScorecardFlags_ShouldPass(t *testing.T) {
result, _ := addSCSScan(cmdCommand, resubmitConfig)

expectedConfig := wrappers.SCSConfig{
Twoms: "true",
Twoms: trueString,
Scorecard: falseString,
}

Expand Down Expand Up @@ -724,7 +724,7 @@ func TestAddSCSScan_ResubmitWithScorecardFlags_ShouldPass(t *testing.T) {
{
Type: commonParams.ScsType,
Value: map[string]interface{}{
configTwoms: "true",
configTwoms: trueString,
ScsScoreCardType: trueString,
},
},
Expand Down

0 comments on commit d406d06

Please sign in to comment.