1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

toml: solidify single-line escape validation (#12644)

This commit is contained in:
Larpon
2021-12-02 11:07:53 +01:00
committed by GitHub
parent adddac4807
commit 7d0a36dd08
2 changed files with 14 additions and 9 deletions

View File

@@ -14,9 +14,7 @@ const (
'valid/example-v0.4.0.toml',
'valid/datetime-truncate.toml', // Not considered valid since RFC 3339 doesn't permit > 6 ms digits ??
]
invalid_exceptions = [
'invalid/string-bad-line-ending-escape.toml',
]
invalid_exceptions = []string{}
valid_value_exceptions = [
// These have correct values, and should've passed, but the format of arrays is *mixed* in the JSON ??