From bcc40f26fb03cc89b2fbd44a1a44e3d2c608829c Mon Sep 17 00:00:00 2001 From: colmsnowplow Date: Wed, 15 Jan 2025 11:15:57 +0000 Subject: [PATCH] Delete redundant commented out test --- pkg/source/sqs/sqs_source_test.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/pkg/source/sqs/sqs_source_test.go b/pkg/source/sqs/sqs_source_test.go index 669d7b2c..f810c422 100644 --- a/pkg/source/sqs/sqs_source_test.go +++ b/pkg/source/sqs/sqs_source_test.go @@ -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")