Closed Jayman2000 closed 10 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
64e5d0b
) 100.00% compared to head (f9320ca
) 100.00%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
I tried to fix the one CI job that failed, but I don’t think that there’s anything that I can do. It looks like the failure was caused by a random HTTP 502 error from GitHub. I tried running test suite on my system with the same software versions (Windows 11, Go 1.19.3, Java 16 and Python 3.11), and it succeeded.
Is there anything that I need to do in order to fix this PR?
Edit: I just rebased my branch on master
. We’ll see if this problem comes back.
According to the TOML spec, “A TOML file must be a valid UTF-8 encoded Unicode document”. Before this commit, pretty-format-toml didn’t specify an encoding when opening TOML files. As a result, the character encoding used to decode TOML files depended on the user’s system configuration. This commit makes sure that TOML files are always decoded using UTF-8, regardless of how the user’s system is configured.