fix(std/toml): parser error with inline comments (#6942)

This commit is contained in:
Jarrett Helton 2020-08-03 13:26:02 -04:00 committed by GitHub
parent e9d713c007
commit d615ebefe2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -48,7 +48,7 @@ Deno.test({
Deno.test({
name: "[TOML] Boolean",
fn(): void {
const expected = { boolean: { bool1: true, bool2: false } };
const expected = { boolean: { bool1: true, bool2: false, bool3: true } };
const actual = parseFile(path.join(testFilesDir, "boolean.toml"));
assertEquals(actual, expected);
},