We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f92a77 commit 3df9848Copy full SHA for 3df9848
coderd/authzquery/system_test.go
@@ -117,7 +117,7 @@ func (suite *MethodTestSuite) TestSystemFunctions() {
117
})
118
suite.Run("GetUserCount", func() {
119
suite.RunMethodTest(func(t *testing.T, db database.Store) MethodCase {
120
- return methodCase(values(), asserts(), values(0))
+ return methodCase(values(), asserts(), values(int64(0)))
121
122
123
suite.Run("GetTemplates", func() {
@@ -130,7 +130,7 @@ func (suite *MethodTestSuite) TestSystemFunctions() {
130
131
b := dbgen.WorkspaceBuild(t, db, database.WorkspaceBuild{})
132
o := b
133
- b.DailyCost = 10
+ o.DailyCost = 10
134
return methodCase(values(database.UpdateWorkspaceBuildCostByIDParams{
135
ID: b.ID,
136
DailyCost: 10,
0 commit comments