mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
Removing extra underscores
This commit is contained in:
parent
8b0b7f5c67
commit
0cb447f442
1 changed files with 3 additions and 2 deletions
|
|
@ -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"},
|
||||
|
|
|
|||
Loading…
Reference in a new issue