Merge pull request #9117 from jepler/getenv-strings-must-be-quoted
settings.toml: explicitly check that strings must be quoted
This commit is contained in:
commit
001740f2d7
2 changed files with 2 additions and 0 deletions
|
|
@ -58,6 +58,7 @@ content_bad = [
|
|||
b'key = """\n',
|
||||
b"key =\n",
|
||||
b'key="',
|
||||
b'key = strings must be quoted\n',
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -32,3 +32,4 @@ key Invalid byte '\n'
|
|||
key Invalid byte '"'
|
||||
key invalid syntax for integer with base 10: ''
|
||||
key Invalid byte 'EOF'
|
||||
key invalid syntax for integer with base 10: 'strings must be quoted'
|
||||
|
|
|
|||
Loading…
Reference in a new issue