Skip to content

Commit

Permalink
fix(tests): rm test that I accounted for elsewhere
Browse files Browse the repository at this point in the history
Signed-off-by: Samantha Coyle <[email protected]>
  • Loading branch information
sicoyle committed Nov 20, 2024
1 parent 16834ed commit 64da4cb
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions common/component/kafka/metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,20 +376,6 @@ func TestTls(t *testing.T) {
})
}

func TestAwsIam(t *testing.T) {
k := getKafka()

t.Run("missing aws region", func(t *testing.T) {
m := getBaseMetadata()
m[authType] = awsIAMAuthType
meta, err := k.getKafkaMetadata(m)
require.Error(t, err)
require.Nil(t, meta)

require.Equal(t, "missing AWS region property 'awsRegion' for authType 'awsiam'", err.Error())
})
}

func TestMetadataConsumerFetchValues(t *testing.T) {
k := getKafka()
m := getCompleteMetadata()
Expand Down

0 comments on commit 64da4cb

Please sign in to comment.