From ee748b0c0562f1c582c0bc5085ec0cd6d616806c Mon Sep 17 00:00:00 2001 From: Boshen Date: Sat, 21 Sep 2024 00:42:59 +0800 Subject: [PATCH] fix(isolated_declarations): fix fixture spacing --- crates/oxc_isolated_declarations/tests/fixtures/class.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/oxc_isolated_declarations/tests/fixtures/class.ts b/crates/oxc_isolated_declarations/tests/fixtures/class.ts index 6b97c624999ca..00b29473a6d40 100644 --- a/crates/oxc_isolated_declarations/tests/fixtures/class.ts +++ b/crates/oxc_isolated_declarations/tests/fixtures/class.ts @@ -23,15 +23,15 @@ export class Baz { /** * Just a comment */ - readonly prop1 = 'some string'; + readonly prop1 = "some string"; /** * Just a comment */ - prop2 = 'another string'; + prop2 = "another string"; /** * Just a comment */ - private prop3 = 'yet another string'; + private prop3 = "yet another string"; /** * Just a comment */ @@ -39,7 +39,7 @@ export class Baz { /** * Just a comment */ - private static prop5 = 'yet another string'; + private static prop5 = "yet another string"; /** * Just a comment */