Skip to content

Commit

Permalink
test: Remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
davidparsson committed Apr 19, 2024
1 parent 67af0a3 commit cc38417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/e2e_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('JUnit Report builder', function () {
return result.trim();
};

const reportWith = (content, testSuitesProperties) => '<?xml version="1.0" encoding="UTF-8"?>\n' + content;
const reportWith = (content) => '<?xml version="1.0" encoding="UTF-8"?>\n' + content;

it('should produce a report identical to the expected one', function () {
builder.testCase().className('root.test.Class1');
Expand Down

0 comments on commit cc38417

Please sign in to comment.