summaryrefslogtreecommitdiff
path: root/std/encoding/yaml/parse_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/encoding/yaml/parse_test.ts')
-rw-r--r--std/encoding/yaml/parse_test.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/std/encoding/yaml/parse_test.ts b/std/encoding/yaml/parse_test.ts
index bdcd8db62..21f1b893b 100644
--- a/std/encoding/yaml/parse_test.ts
+++ b/std/encoding/yaml/parse_test.ts
@@ -20,7 +20,7 @@ Deno.test({
const expected = { test: "toto", foo: { bar: true, baz: 1, qux: null } };
assertEquals(parse(yaml), expected);
- }
+ },
});
Deno.test({
@@ -40,17 +40,17 @@ name: Eve
const expected = [
{
id: 1,
- name: "Alice"
+ name: "Alice",
},
{
id: 2,
- name: "Bob"
+ name: "Bob",
},
{
id: 3,
- name: "Eve"
- }
+ name: "Eve",
+ },
];
assertEquals(parseAll(yaml), expected);
- }
+ },
});