From 03f09701d7fb00082269384e67d15ac8a0f83780 Mon Sep 17 00:00:00 2001 From: peterwoodworth Date: Tue, 22 Mar 2022 23:06:49 -0700 Subject: [PATCH] chore: fix prlinter integ test check --- tools/@aws-cdk/prlint/lint.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/@aws-cdk/prlint/lint.ts b/tools/@aws-cdk/prlint/lint.ts index 39e0eded94b43..ce223d549d84d 100755 --- a/tools/@aws-cdk/prlint/lint.ts +++ b/tools/@aws-cdk/prlint/lint.ts @@ -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[]) {