From 0cb447f44264e7c4913ccafdbae0723e04015401 Mon Sep 17 00:00:00 2001 From: Andy Long Date: Tue, 13 Jun 2023 11:07:14 +0100 Subject: [PATCH] Removing extra underscores --- count_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/count_test.go b/count_test.go index 9a876ef..cef8e32 100644 --- a/count_test.go +++ b/count_test.go @@ -1,9 +1,10 @@ package underscore import ( - "github.com/stretchr/testify/assert" "strings" "testing" + + "github.com/stretchr/testify/assert" ) func Test_Count_Can_Count_Numbers(t *testing.T) { @@ -21,7 +22,7 @@ type People struct { Gender string } -func Test_Count_Can_Count__People(t *testing.T) { +func Test_Count_Can_Count_People(t *testing.T) { people := []People{ {Name: "Andy", Age: 43, Gender: "M"}, {Name: "Fred", Age: 33, Gender: "M"},