Skip to content

Commit

Permalink
added print
Browse files Browse the repository at this point in the history
  • Loading branch information
TiganeteaRobert committed Aug 29, 2022
1 parent 10c4afb commit c6ffdad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/target/kinesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
package target

import (
"fmt"
"strings"
"sync/atomic"
"testing"
Expand Down Expand Up @@ -41,6 +42,7 @@ func TestKinesisTarget_KinesisConnectionFailure(t *testing.T) {
target, err := newKinesisTargetWithInterfaces(client, "00000000000", testutil.AWSLocalstackRegion, "not-exists")
assert.NotNil(err)
assert.Nil(target)
fmt.Println(err.Error())
if err != nil {
assert.True(strings.HasPrefix(err.Error(), `RequestError`))
}
Expand Down

0 comments on commit c6ffdad

Please sign in to comment.