fix: `TestToYaml` not working with 32-bit architectures

Signed-off-by: Jakob Probst <git@jakobprobst.de>
This commit is contained in:
Jakob Probst 2025-06-11 19:19:04 +02:00
parent 131e3f3f04
commit a52aff281b
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
`,
},