e2e scenarion config test errorf format fix (#2810)

Signed-off-by: David Fridrich <fridrich.david19@gmail.com>
This commit is contained in:
David Fridrich 2025-04-24 14:18:28 +02:00 committed by GitHub
parent ace7703e29
commit 69cbc75f7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ func TestConfigEnvs(t *testing.T) {
}
if result != "" {
t.Logf("Response received:\n%v", responseBody)
return fmt.Errorf(result)
return fmt.Errorf("%v", result)
}
return nil
}