@@ -78,7 +78,7 @@ func TestSmoke_Scan_IDE(t *testing.T) {
78
78
span := instrumentor .StartSpan (context .Background (), "UploadAndAnalyze" )
79
79
defer span .Finish ()
80
80
81
- response , bundleHash , _ , scanErr := codeScanner .UploadAndAnalyze (span .Context (), uuid .New ().String (), target , files , map [string ]bool {})
81
+ response , bundleHash , scanErr := codeScanner .UploadAndAnalyze (span .Context (), uuid .New ().String (), target , files , map [string ]bool {})
82
82
require .NoError (t , scanErr )
83
83
require .NotEmpty (t , bundleHash )
84
84
require .NotNil (t , response )
@@ -132,7 +132,7 @@ func Test_SmokeScan_CLI(t *testing.T) {
132
132
span := instrumentor .StartSpan (context .Background (), "UploadAndAnalyze" )
133
133
defer span .Finish ()
134
134
135
- response , bundleHash , _ , scanErr := codeScanner .UploadAndAnalyze (span .Context (), uuid .New ().String (), target , files , map [string ]bool {})
135
+ response , bundleHash , scanErr := codeScanner .UploadAndAnalyze (span .Context (), uuid .New ().String (), target , files , map [string ]bool {})
136
136
require .NoError (t , scanErr )
137
137
require .NotEmpty (t , bundleHash )
138
138
require .NotNil (t , response )
@@ -182,7 +182,7 @@ func TestSmoke_Scan_SubFolder(t *testing.T) {
182
182
span := instrumentor .StartSpan (context .Background (), "UploadAndAnalyze" )
183
183
defer span .Finish ()
184
184
185
- response , bundleHash , _ , scanErr := codeScanner .UploadAndAnalyze (span .Context (), uuid .New ().String (), target , files , map [string ]bool {})
185
+ response , bundleHash , scanErr := codeScanner .UploadAndAnalyze (span .Context (), uuid .New ().String (), target , files , map [string ]bool {})
186
186
require .NoError (t , scanErr )
187
187
require .NotEmpty (t , bundleHash )
188
188
require .NotNil (t , response )
0 commit comments