From 02f9ec5bd0159f7728f22f3f8eb713d71ef8c12a Mon Sep 17 00:00:00 2001 From: Raffaele Di Fazio Date: Sat, 26 Oct 2024 09:55:21 +0200 Subject: [PATCH] fix flaky aws sd test Signed-off-by: Raffaele Di Fazio --- provider/awssd/aws_sd_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/awssd/aws_sd_test.go b/provider/awssd/aws_sd_test.go index 2600cd4b7b..38cc0711ba 100644 --- a/provider/awssd/aws_sd_test.go +++ b/provider/awssd/aws_sd_test.go @@ -1004,6 +1004,6 @@ func TestAWSSDProvider_awsTags(t *testing.T) { } for _, test := range tests { - assert.EqualValues(t, test.Expectation, awsTags(test.Input)) + require.ElementsMatch(t, test.Expectation, awsTags(test.Input)) } }