From 40a220ba3b3b1d9a9d06d17f5e78d4cc7f5c23d3 Mon Sep 17 00:00:00 2001 From: Hanshal Mehta <122217807+hanshal101@users.noreply.github.com> Date: Tue, 19 Nov 2024 04:12:13 +0530 Subject: [PATCH] feat: sort the dev and runtime packages in bsf.hcl Signed-off-by: hanshal101 <122217807+hanshal101@users.noreply.github.com> --- pkg/strings/set_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/strings/set_test.go b/pkg/strings/set_test.go index a342c954..475ea7cc 100644 --- a/pkg/strings/set_test.go +++ b/pkg/strings/set_test.go @@ -68,7 +68,7 @@ func TestPreferNewSliceElements(t *testing.T) { name: "Test 3", existing: []string{"a", "b", "c"}, new: []string{"a", "b", "d"}, - want: []string{"c", "a", "b", "d"}, + want: []string{"a", "b", "c", "d"}, }, }