pelletier / go-toml

Go library for the TOML file format
https://github.com/pelletier/go-toml
Other
1.7k stars 209 forks source link

Fix internal entry size test #761

Closed pelletier closed 2 years ago

pelletier commented 2 years ago

The test meant to assert that the size of entry does not grow beyond what it is today. 48 is the current size in bytes on x64. On 32-bit platform that value should be less. As written the test was doing the opposite comparison.

Unfortunately it does not seem like github actions supports multiple platforms.

Fixes #760