Skip to content

Commit 7fd0903

Browse files
committed
Fix expired license
1 parent 2b87ae1 commit 7fd0903

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enterprise/coderd/coderd_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func TestEntitlements(t *testing.T) {
159159
UploadedAt: database.Now(),
160160
Exp: database.Now().AddDate(-1, 0, 0),
161161
JWT: coderdenttest.GenerateLicense(t, coderdenttest.LicenseOptions{
162-
AuditLog: true,
162+
ExpiresAt: database.Now().AddDate(-1, 0, 0),
163163
}),
164164
})
165165
require.NoError(t, err)

0 commit comments

Comments
 (0)