Skip to content

Commit f2a2126

Browse files
authored
test: Fix ProjectVersionLogs returning error when using DB (#852)
This didn't actually effect the test value, since we're just looking for logs. It did produce spam in the logs though, and could be interpreted as a failure.
1 parent c2a025d commit f2a2126

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

coderd/projectversions_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ func TestProjectVersionLogs(t *testing.T) {
240240
coderdtest.NewProvisionerDaemon(t, client)
241241
before := time.Now()
242242
version := coderdtest.CreateProjectVersion(t, client, user.OrganizationID, &echo.Responses{
243-
Parse: echo.ParseComplete,
243+
Parse: echo.ParseComplete,
244+
ProvisionDryRun: echo.ProvisionComplete,
244245
Provision: []*proto.Provision_Response{{
245246
Type: &proto.Provision_Response_Log{
246247
Log: &proto.Log{

0 commit comments

Comments
 (0)