Skip to content

Commit 072d1c8

Browse files
authored
Merge pull request #46 from datum-cloud/chore/fix-go-test
chore: fix go test failure
2 parents 21d94b4 + 04d2d00 commit 072d1c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/cmd/auth/login.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func runLoginFlow(ctx context.Context, authHostname string, apiHostname string,
186186
}
187187
}
188188
http.Error(w, errMsg, http.StatusBadRequest)
189-
errChan <- fmt.Errorf(errMsg)
189+
errChan <- fmt.Errorf("%s", errMsg)
190190
return
191191
}
192192

0 commit comments

Comments
 (0)