fix: `TestToYaml` not working with 32-bit architectures (#2075)

Signed-off-by: Jakob Probst <git@jakobprobst.de>
This commit is contained in:
ProbstDJakob 2025-06-12 11:15:48 +02:00 committed by GitHub
parent 131e3f3f04
commit 8a57db5ffd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ func TestToYaml(t *testing.T) {
},
{
name: "test unmarshalling issue 2024 with int64",
input: map[string]any{"thisShouldBeString": 1234567890123456789},
input: map[string]any{"thisShouldBeString": int64(1234567890123456789)},
expected: `thisShouldBeString: 1234567890123456789
`,
},