From 5bd1e909c7c06cd933d4c0cf8e177bba30318065 Mon Sep 17 00:00:00 2001 From: Fawzi Abdulfattah Date: Sun, 15 Jan 2023 04:04:41 +0200 Subject: [PATCH] Linting Signed-off-by: Fawzi Abdulfattah --- test/javascript/functions.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/javascript/functions.test.js b/test/javascript/functions.test.js index 6ef397f780..ec2e90647c 100644 --- a/test/javascript/functions.test.js +++ b/test/javascript/functions.test.js @@ -3,7 +3,7 @@ const Functions = require('phpmyadmin/functions'); describe('Functions', () => { - describe('Testing stringifyJSON', function() { + describe('Testing stringifyJSON', function () { test('Should return the stringified JSON input', () => { const stringifiedJSON = Functions.stringifyJSON('{ "lang": "php"}', null, 4); expect(stringifiedJSON).toEqual('{\n "lang": "php"\n}'); @@ -13,5 +13,5 @@ describe('Functions', () => { const stringifiedJSON = Functions.stringifyJSON('{ "name": "notvalid}'); expect(stringifiedJSON).toEqual('{ "name": "notvalid}'); }); - }); + }); });