From d33e5a1686793fe1ce02efa15534f77e75af11f5 Mon Sep 17 00:00:00 2001 From: Alessio Perugini Date: Fri, 15 Sep 2023 11:02:59 +0200 Subject: [PATCH] remove godoc comment commit by mistake --- internal/integrationtest/compile_4/compile_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/integrationtest/compile_4/compile_test.go b/internal/integrationtest/compile_4/compile_test.go index 878025a4e84..a61d68563a5 100644 --- a/internal/integrationtest/compile_4/compile_test.go +++ b/internal/integrationtest/compile_4/compile_test.go @@ -572,9 +572,6 @@ func testBuilderSketchWithConflictingLibraries(t *testing.T, env *integrationtes require.NoError(t, err) libs := out.BuilderResult.UsedLibraries - // SortFunc sorts the slice x in ascending order as determined by the cmp function. - // This sort is not guaranteed to be stable. cmp(a, b) should return a negative number when a \< b, - // a positive number when a > b and zero when a == b. slices.SortFunc(libs, func(x, y *builderLibrary) int { return cmp.Compare(x.Name, y.Name) }) require.Len(t, libs, 2) require.Equal(t, "Bridge", libs[0].Name)