diff options
Diffstat (limited to 'std/encoding/toml_test.ts')
-rw-r--r-- | std/encoding/toml_test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/std/encoding/toml_test.ts b/std/encoding/toml_test.ts index cc3d190b0..565fe1eeb 100644 --- a/std/encoding/toml_test.ts +++ b/std/encoding/toml_test.ts @@ -29,6 +29,8 @@ Deno.test({ "whitespace\n is preserved.", withApostrophe: "What if it's not?", withSemicolon: `const message = 'hello world';`, + withHexNumberLiteral: + "Prevent bug from stripping string here ->0xabcdef", }, }; const actual = parseFile(path.join(testFilesDir, "string.toml")); |