Skip to content

Commit b285299

Browse files
[autofix.ci] apply automated fixes
1 parent bc42060 commit b285299

File tree

1 file changed

+4
-1
lines changed
  • crates/oxc_codegen/tests/integration

1 file changed

+4
-1
lines changed

crates/oxc_codegen/tests/integration/js.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,10 @@ fn assignment() {
227227
test_minify("({ [a.b]: x } = foo);", "({[a.b]:x}=foo);");
228228

229229
test_minify(r#"({"my-key": value} = obj);"#, r#"({"my-key":value}=obj);"#);
230-
test_minify(r#"({["computed"]: a, "literal": b} = obj);"#, r#"({["computed"]:a,"literal":b}=obj);"#);
230+
test_minify(
231+
r#"({["computed"]: a, "literal": b} = obj);"#,
232+
r#"({["computed"]:a,"literal":b}=obj);"#,
233+
);
231234
test_minify(r#"let {"test-key": testKey} = obj;"#, r#"let{"test-key":testKey}=obj;"#);
232235

233236
test_minify(r#"({ "test-key": key });"#, r#"({"test-key":key});"#);

0 commit comments

Comments
 (0)