diff options
author | Joe Chen <jc@unknwon.io> | 2023-05-08 23:02:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 23:02:45 -0400 |
commit | ada10834627e858df22accd383a1402c62310821 (patch) | |
tree | f5e0a493b4c5e1d4713ff7500ad25fd9a53bbb5d /internal | |
parent | 5df966806391dd8ff4c084355567f966e826c800 (diff) |
tests(db): fix data race (#7444)
[skip ci]
Diffstat (limited to 'internal')
-rw-r--r-- | internal/db/actions_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/db/actions_test.go b/internal/db/actions_test.go index 15e11e9f..6b8a01a3 100644 --- a/internal/db/actions_test.go +++ b/internal/db/actions_test.go @@ -148,6 +148,8 @@ func actionsCommitRepo(t *testing.T, db *actions) { now := time.Unix(1588568886, 0).UTC() + conf.SetMockSSH(t, conf.SSHOpts{}) + t.Run("new commit", func(t *testing.T) { t.Cleanup(func() { err := db.Session(&gorm.Session{AllowGlobalUpdate: true}).WithContext(ctx).Delete(new(Action)).Error |