From cc38417b162086f0cd041a00e684e93b0e9e02dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20P=C3=A4rsson?= Date: Fri, 19 Apr 2024 14:32:51 +0200 Subject: [PATCH] test: Remove unused argument --- spec/e2e_spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/e2e_spec.js b/spec/e2e_spec.js index b184f90..81ec5a7 100644 --- a/spec/e2e_spec.js +++ b/spec/e2e_spec.js @@ -28,7 +28,7 @@ describe('JUnit Report builder', function () { return result.trim(); }; - const reportWith = (content, testSuitesProperties) => '\n' + content; + const reportWith = (content) => '\n' + content; it('should produce a report identical to the expected one', function () { builder.testCase().className('root.test.Class1');