Skip to content

Commit c592bd3

Browse files
committed
dom.test.js: Autoformat.
1 parent a36b0aa commit c592bd3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/dom.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ describe("core.dom tests", () => {
904904
});
905905
it("can be used to store and retrieve arbitrary data on DOM nodes.", function () {
906906
const el = document.createElement("div");
907-
const data = { okay() {} };
907+
const data = { okay() { } };
908908
dom.set_data(el, "test_data", data);
909909
expect(dom.get_data(el, "test_data")).toBe(data);
910910
});

0 commit comments

Comments
 (0)