Skip to content

Commit 4f55cfc

Browse files
srtaalejzimeg
andauthored
Update cmd/manifest/validate_test.go
Co-authored-by: Eden Zimbelman <eden.zimbelman@salesforce.com>
1 parent a440b11 commit 4f55cfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/manifest/validate_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type ManifestValidatePkgMock struct {
3838

3939
func (m *ManifestValidatePkgMock) ManifestValidate(ctx context.Context, clients *shared.ClientFactory, app types.App, token string) (bool, slackerror.Warnings, error) {
4040
args := m.Called(ctx, clients, app, token)
41-
return args.Bool(0), nil, args.Error(2)
41+
return args.Bool(0), args.Get(1).(slackerror.Warnings), args.Error(2)
4242
}
4343

4444
func TestManifestValidateCommand(t *testing.T) {

0 commit comments

Comments
 (0)