chore(test): clean up unused code and fix test helper usage

- Update TestBatchBindings_Status to use newTestHandlerWithRedis helper
- Remove unused jsonID helper function from sync_bindings_spec_test.go
- Add time import to models.go
This commit is contained in:
zenfun
2025-12-24 02:27:11 +08:00
parent d731e42ae5
commit dff2fc7562
3 changed files with 6 additions and 7 deletions

View File

@@ -202,7 +202,7 @@ func TestBatchModels_Delete(t *testing.T) {
}
func TestBatchBindings_Status(t *testing.T) {
h, db := newTestHandler(t)
h, db, _ := newTestHandlerWithRedis(t)
group := model.ProviderGroup{Name: "default", Type: "openai", BaseURL: "https://api.openai.com/v1", Models: "m1", Status: "active"}
if err := db.Create(&group).Error; err != nil {