Merge current v3.2 into v3.3

This commit is contained in:
mmatur 2025-01-03 15:07:43 +01:00
commit 34aa3b75b8
No known key found for this signature in database
GPG key ID: 2FFE42FC256CFF8E
12 changed files with 38 additions and 34 deletions

View file

@ -892,7 +892,7 @@ func assertValidLogData(t *testing.T, expected string, logData []byte) {
func captureStdout(t *testing.T) (out *os.File, restoreStdout func()) {
t.Helper()
file, err := os.CreateTemp("", "testlogger")
file, err := os.CreateTemp(t.TempDir(), "testlogger")
require.NoError(t, err, "failed to create temp file")
original := os.Stdout