Skip to content

Commit

Permalink
continue to tweak text
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed Jun 21, 2023
1 parent 54698d5 commit 1ea4e15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions processor/detector_license_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestLicenceDetector_Detect(t *testing.T) {
name: "spdx identifier gpl multiple",
fields: fields{true},
args: args{
filename: "",
filename: "GPL-2.0",
content: spdxIdentifierGpl,
},
want: []License{
Expand Down Expand Up @@ -65,7 +65,7 @@ func TestLicenceDetector_Detect(t *testing.T) {
name: "spdx identifier mit",
fields: fields{true},
args: args{
filename: "",
filename: "MIT",
content: spdxIdentifierMit,
},
want: []License{
Expand All @@ -80,7 +80,7 @@ func TestLicenceDetector_Detect(t *testing.T) {
name: "spdx identifier lgpl multiple",
fields: fields{true},
args: args{
filename: "",
filename: "LGPL-2.1",
content: spdxIdentifierLgpl,
},
want: []License{
Expand All @@ -100,7 +100,7 @@ func TestLicenceDetector_Detect(t *testing.T) {
name: "spdx identifier bsd3 singular",
fields: fields{true},
args: args{
filename: "",
filename: "BSD-3-Clause",
content: spdxIdentifierBsd3,
},
want: []License{
Expand Down

0 comments on commit 1ea4e15

Please sign in to comment.