Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Mar 11, 2019
1 parent 1a4583e commit 2ba8a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/unittests/common/testUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ function copyResultsForFolders(source: TestFolder[], target: TestFolder[]): void
}
function copyResultsForFiles(source: TestFile[], target: TestFile[]): void {
source.forEach(sourceFile => {
const targetFile = target.find(file => file.name === sourceFile.name && file.nameToRun === sourceFile.nameToRun);
const targetFile = target.find(file => file.name === sourceFile.name);
if (!targetFile) {
return;
}
Expand Down

0 comments on commit 2ba8a58

Please sign in to comment.