Skip to content

Commit bc42060

Browse files
authored
chore: update
1 parent c9bccc7 commit bc42060

File tree

1 file changed

+0
-3
lines changed
  • crates/oxc_codegen/tests/integration

1 file changed

+0
-3
lines changed

crates/oxc_codegen/tests/integration/js.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,10 +230,7 @@ fn assignment() {
230230
test_minify(r#"({["computed"]: a, "literal": b} = obj);"#, r#"({["computed"]:a,"literal":b}=obj);"#);
231231
test_minify(r#"let {"test-key": testKey} = obj;"#, r#"let{"test-key":testKey}=obj;"#);
232232

233-
// Object literals with string keys
234233
test_minify(r#"({ "test-key": key });"#, r#"({"test-key":key});"#);
235-
236-
// Class properties with string keys
237234
test_minify(r#"(class { "test-key" = key });"#, r#"(class{"test-key"=key});"#);
238235
}
239236

0 commit comments

Comments
 (0)