Skip to content

Commit ff62057

Browse files
committed
make gen and test fix
1 parent 1a5deb8 commit ff62057

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

coderd/database/dbauthz/dbauthz_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"database/sql"
66
"encoding/json"
77
"reflect"
8+
"strings"
89
"testing"
910
"time"
1011

@@ -1807,7 +1808,7 @@ func (s *MethodTestSuite) TestProvisionerKeys() {
18071808
ID: uuid.New(),
18081809
CreatedAt: time.Now(),
18091810
OrganizationID: org.ID,
1810-
Name: coderdtest.RandomName(s.T()),
1811+
Name: strings.ToLower(coderdtest.RandomName(s.T())),
18111812
HashedSecret: []byte(coderdtest.RandomName(s.T())),
18121813
}
18131814
//nolint:gosimple // casting is not a simplification

coderd/database/dump.sql

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries.sql.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/unique_constraint.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)