Skip to content

Commit

Permalink
chore: fix prlinter integ test check (#19521)
Browse files Browse the repository at this point in the history
fixes pr linter, currently failing #19519

----

### All Submissions:

* [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md)

### Adding new Unconventional Dependencies:

* [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md/#adding-new-unconventional-dependencies)

### New Features

* [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/master/INTEGRATION_TESTS.md)?
	* [ ] Did you use `cdk-integ` to deploy the infrastructure and generate the snapshot (i.e. `cdk-integ` without `--dry-run`)?

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
peterwoodworth committed Mar 23, 2022
1 parent 87ad029 commit 101f2a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/@aws-cdk/prlint/lint.ts
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 101f2a7

Please sign in to comment.