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
1 changed files with 2 additions and 2 deletions

View File

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