Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k authored and hudlow committed Mar 22, 2024
1 parent 333cae2 commit 0e382f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yaml/stringify_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ binary: !<tag:yaml.org,2002:binary> SGVsbG8=
Deno.test({
name: "arrays can be stringified directly",
fn() {
const array = [1, 2, 3]
const array = [1, 2, 3];

const expected = "- 1\n- 2\n- 3\n";

Expand All @@ -59,9 +59,9 @@ Deno.test({
Deno.test({
name: "strings can be stringified directly",
fn() {
const string = 'Hello world';
const string = "Hello world";

const expected = 'Hello world\n';
const expected = "Hello world\n";

assertEquals(stringify(string), expected);
},
Expand Down

0 comments on commit 0e382f6

Please sign in to comment.