Fix lowercasing of coverage driver

This commit is contained in:
Shivam Mathur
2020-01-26 16:15:39 +05:30
parent fbe1419ce4
commit d613c975f6
3 changed files with 3 additions and 3 deletions

View File

@ -143,7 +143,7 @@ export async function addCoverage(
version: string,
os_version: string
): Promise<string> {
coverage_driver.toLowerCase();
coverage_driver = coverage_driver.toLowerCase();
const script: string =
'\n' + (await utils.stepLog('Setup Coverage', os_version));
const pipe: string = await utils.suppressOutput(os_version);