Skip to content

Commit

Permalink
more verify fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Apr 4, 2023
1 parent 493722d commit bf0e2f3
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/it/MPMD-280-JDK12/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-295-JDK13/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-302-JDK14/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-302-JDK15/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-312-JDK16/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-312-JDK17/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-332-JDK18/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-348-JDK19/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )
2 changes: 1 addition & 1 deletion src/it/MPMD-365-JDK20/verify.groovy
Expand Up @@ -21,4 +21,4 @@
File buildLog = new File( basedir, 'build.log' )
assert buildLog.exists()
assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
assert !buildLog.text.contains( '[WARNING]' )
assert !buildLog.text.contains( '[WARNING] PMD' )

0 comments on commit bf0e2f3

Please sign in to comment.