feat: update

This commit is contained in:
yanghao05
2025-04-29 20:44:28 +08:00
parent e029327b0d
commit 751bbea51c
3 changed files with 12 additions and 14 deletions

View File

@@ -56,9 +56,9 @@ func (s *UsersTestSuite) Test_BatchInsert() {
Username: "Username_" + openID,
Avatar: lo.ToPtr("Avatar_" + openID),
}
err = Users.Create(context.Background(), user)
m, err := Users.Create(context.Background(), user)
So(err, ShouldBeNil)
So(m, ShouldNotBeNil)
}
})
}