Skip to content

Commit 0a8ca2e

Browse files
committedFeb 12, 2025
fix: typo in logger function name
1 parent 7d38302 commit 0a8ca2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎wtp/wtpResultsParser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const parseTestResults = (testJson) => {
1717
try {
1818
let browserName = _.get(testJson, 'data.location', 'somePlace:N/A').split(':')[1];
1919
if ('firefox' === browserName.toLowerCase()) {
20-
logger.warning("Test run with firefox that is not supported", rollBarMsg);
20+
logger.warn("Test run with firefox that is not supported", rollBarMsg);
2121
return {status: 'error', message: 'firefox'};
2222
}
2323
let origImageList = _.get(testJson, config.get('wtp.paths.imageList'), _.get(testJson, config.get('wtp.paths.imageListFallback'), null));

0 commit comments

Comments
 (0)