Skip to content

Commit

Permalink
chore: fix prlinter integ test check
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwoodworth committed Mar 23, 2022
1 parent 03f0970 commit c2d531e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/@aws-cdk/prlint/lint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function testChanged(files: any[]) {
}

function integTestChanged(files: any[]) {
return files.filter(f => f.filename.toLowerCase().match(/integ.*.ts/)).length != 0;
return files.filter(f => f.filename.toLowerCase().match(/integ.*.ts$/)).length != 0;
}

function readmeChanged(files: any[]) {
Expand Down

0 comments on commit c2d531e

Please sign in to comment.