Skip to content

Commit 6746d26

Browse files
committed
tests: removed underscore from test names
1 parent bdd5ecc commit 6746d26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

binding/multipart_form_mapping_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/stretchr/testify/assert"
1515
)
1616

17-
func TestFormMultipartBinding_Bind_OneFile(t *testing.T) {
17+
func TestFormMultipartBindingBindOneFile(t *testing.T) {
1818
var s struct {
1919
FileValue multipart.FileHeader `form:"file"`
2020
FilePtr *multipart.FileHeader `form:"file"`
@@ -39,7 +39,7 @@ func TestFormMultipartBinding_Bind_OneFile(t *testing.T) {
3939
assertMultipartFileHeader(t, s.ArrayPtrs[0], file)
4040
}
4141

42-
func TestFormMultipartBinding_Bind_TwoFiles(t *testing.T) {
42+
func TestFormMultipartBindingBindTwoFiles(t *testing.T) {
4343
var s struct {
4444
SliceValues []multipart.FileHeader `form:"file"`
4545
SlicePtrs []*multipart.FileHeader `form:"file"`
@@ -68,7 +68,7 @@ func TestFormMultipartBinding_Bind_TwoFiles(t *testing.T) {
6868
}
6969
}
7070

71-
func TestFormMultipartBinding_Bind_Error(t *testing.T) {
71+
func TestFormMultipartBindingBindError(t *testing.T) {
7272
files := []testFile{
7373
{"file", "file1", []byte("hello")},
7474
{"file", "file2", []byte("world")},

0 commit comments

Comments
 (0)