Skip to content

Commit 3972dfe

Browse files
committed
string formatting
1 parent e28c394 commit 3972dfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default class LambdaRestService {
101101
}
102102

103103
this._currrentTestTitle = test?.parent;
104-
this._currrentTestTitle = this._currrentTestTitle + " - " + test?.title;
104+
this._currrentTestTitle = `${this._currrentTestTitle} - ${test?.title}`;
105105

106106
if (test.title && !this._testTitle) {
107107
this._testTitle = test.title;

0 commit comments

Comments
 (0)