diff options
Diffstat (limited to 'std/encoding/toml_test.ts')
-rw-r--r-- | std/encoding/toml_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/toml_test.ts b/std/encoding/toml_test.ts index 45d0a66e6..0a927cde9 100644 --- a/std/encoding/toml_test.ts +++ b/std/encoding/toml_test.ts @@ -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); }, |