aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/toml.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/toml.test.js')
-rw-r--r--test/bun.js/toml.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bun.js/toml.test.js b/test/bun.js/toml.test.js
index 44141b2d4..900d30bf0 100644
--- a/test/bun.js/toml.test.js
+++ b/test/bun.js/toml.test.js
@@ -20,10 +20,10 @@ it("syntax", async () => {
expect(toml.inline.array[1]).toBe(4);
expect(toml.dev["foo.bar"]).toBe("baz");
expect(toml.install.scopes["@mybigcompany"].url).toBe(
- "https://registry.mybigcompany.com"
+ "https://registry.mybigcompany.com",
);
expect(toml.install.scopes["@mybigcompany2"].url).toBe(
- "https://registry.mybigcompany.com"
+ "https://registry.mybigcompany.com",
);
expect(toml.install.scopes["@mybigcompany3"].three).toBe(4);
gc();