Skip to content

Commit 5591fb0

Browse files
committed
drive-by: assert
1 parent c240e71 commit 5591fb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
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-
require.NoError(t, err)
209-
require.NotContains(t, agentLogs, t.Name())
208+
assert.NoError(t, err)
209+
assert.NotContains(t, agentLogs, t.Name())
210210
})
211211

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

0 commit comments

Comments
 (0)