fix typos in test method names (#3052)

This commit is contained in:
maiyama18 2020-06-14 10:24:07 +09:00 committed by GitHub
parent 537065fbd9
commit 1bbaa43951
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ func TestPolymorphicHasOne(t *testing.T) {
}) })
} }
func TestCreateEmptyStrut(t *testing.T) { func TestCreateEmptyStruct(t *testing.T) {
type EmptyStruct struct { type EmptyStruct struct {
ID uint ID uint
} }
@ -244,7 +244,7 @@ func TestCreateWithNowFuncOverride(t *testing.T) {
AssertEqual(t, newUser.UpdatedAt, curTime) AssertEqual(t, newUser.UpdatedAt, curTime)
} }
func TestCreateWithNoGORMPrimayKey(t *testing.T) { func TestCreateWithNoGORMPrimaryKey(t *testing.T) {
type JoinTable struct { type JoinTable struct {
UserID uint UserID uint
FriendID uint FriendID uint