Skip to content

Commit b6338e5

Browse files
committed
revert
1 parent 735d0ef commit b6338e5

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

coderd/database/dbpurge/dbpurge_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ func TestDeleteOldWorkspaceAgentLogs(t *testing.T) {
205205
}
206206
return !containsAgentLog(agentLogs, t.Name())
207207
}, testutil.WaitShort, testutil.IntervalFast)
208-
assert.NoError(t, err)
209-
assert.NotContains(t, agentLogs, t.Name())
208+
require.NoError(t, err)
209+
require.NotContains(t, agentLogs, t.Name())
210210
})
211211

212212
t.Run("AgentConnectedSixDaysAgo_LogsValid", func(t *testing.T) {

coderd/notifications/notifications_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,6 @@ func TestWebhookDispatch(t *testing.T) {
152152
t.Parallel()
153153

154154
// setup
155-
if !dbtestutil.WillUsePostgres() {
156-
t.Skip("This test requires postgres")
157-
}
158155
ctx, logger, db := setup(t)
159156

160157
sent := make(chan dispatch.WebhookPayload, 1)

0 commit comments

Comments
 (0)