Skip to content

Commit

Permalink
Delete redundant commented out test
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed Jan 15, 2025
1 parent f790b1e commit bcc40f2
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions pkg/source/sqs/sqs_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,6 @@ func TestNewSQSSourceWithInterfaces_Success(t *testing.T) {
assert.Nil(err)
}

// newSQSSourceWithInterfaces should fail if we can't reach SQS, commented out this test until we look into https://github.com/snowplow/snowbridge/issues/151
/*
func TestNewSQSSourceWithInterfaces_Failure(t *testing.T) {
// Unlike the success test, we don't require anything to exist for this one
assert := assert.New(t)
client := testutil.GetAWSLocalstackSQSClient()
source, err := newSQSSourceWithInterfaces(client, "00000000000", 10, testutil.AWSLocalstackRegion, "nonexistent-queue")
assert.Nil(source)
assert.NotNil(err)
}
*/

func TestSQSSource_SetupFailure(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
Expand Down

0 comments on commit bcc40f2

Please sign in to comment.