From 0117646fb9228fdf0f6292b41098d10ae19195b7 Mon Sep 17 00:00:00 2001 From: David Marshall Date: Thu, 20 Apr 2023 15:05:40 -0400 Subject: [PATCH] lint v2 --- tests/operations/tests/JSONtoYAML.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/operations/tests/JSONtoYAML.mjs b/tests/operations/tests/JSONtoYAML.mjs index c289ae29..f0963adb 100644 --- a/tests/operations/tests/JSONtoYAML.mjs +++ b/tests/operations/tests/JSONtoYAML.mjs @@ -13,7 +13,7 @@ const EXPECTED_YAML = "version: 1.0.0\ndependencies:\n yaml: ^1.10.0\npackage:\ TestRegister.addTests([ { name: "JSON to YAML: no spacing", - input: JSON.stringify({"version":"1.0.0","dependencies":{"yaml":"^1.10.0"},"package":{"exclude":[".idea/**",".gitignore"]}}), + input: JSON.stringify({ "version": "1.0.0", "dependencies": { "yaml": "^1.10.0" }, "package": { "exclude": [".idea/**", ".gitignore"]}}), expectedOutput: EXPECTED_YAML, recipeConfig: [ { @@ -24,7 +24,7 @@ TestRegister.addTests([ }, { name: "JSON to YAML: with spacing", - input: JSON.stringify({"version":"1.0.0","dependencies":{"yaml":"^1.10.0"},"package":{"exclude":[".idea/**",".gitignore"]}}, null, 4), + input: JSON.stringify({ "version": "1.0.0", "dependencies": { "yaml": "^1.10.0" }, "package": { "exclude": [".idea/**", ".gitignore"]}}, null, 4), expectedOutput: EXPECTED_YAML, recipeConfig: [ {