fix: `TestToYaml` not working with 32-bit architectures (#2075)
Signed-off-by: Jakob Probst <git@jakobprobst.de>
This commit is contained in:
parent
131e3f3f04
commit
8a57db5ffd
|
|
@ -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
|
||||
`,
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue