From cfbc688216d6e4303297019006153e164c1603b8 Mon Sep 17 00:00:00 2001 From: min23asdw Date: Mon, 23 Mar 2026 01:23:30 +0700 Subject: [PATCH] fix: use double quotes to satisfy eslint quotes rule --- tests/browser/02_ops.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/browser/02_ops.js b/tests/browser/02_ops.js index 5da2b27c..0baded82 100644 --- a/tests/browser/02_ops.js +++ b/tests/browser/02_ops.js @@ -218,7 +218,7 @@ module.exports = { testOpHtml(browser, "JSON Beautify", "{a:1}", ".json-dict .json-literal", "1"); // testOp(browser, "JSON Minify", "test input", "test_output"); // testOp(browser, "JSON to CSV", "test input", "test_output"); - testOp(browser, "Jsonata Query", '{}', '"Hello World!"', ['$base64decode("SGVsbG8gV29ybGQh")']); + testOp(browser, "Jsonata Query", "{}", '"Hello World!"', ['$base64decode("SGVsbG8gV29ybGQh")']); // testOp(browser, "JWT Decode", "test input", "test_output"); // testOp(browser, "JWT Sign", "test input", "test_output"); // testOp(browser, "JWT Verify", "test input", "test_output");