Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Mar 31, 2024
1 parent 44b3ba9 commit 96ed3b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/it/filesets-test/verify.bsh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ try
{
File depsDir = new File( basedir, "target/dependencies" );
File antJar = new File( depsDir, "ant-1.10.14.jar" );
File junitJar = new File( depsDir, "junit-jupiter-engine-5.10.1.jar" );
File junitJar = new File( depsDir, "junit-jupiter-engine-5.10.2.jar" );

if ( ! antJar.exists() || antJar.isDirectory() )
{
Expand All @@ -43,7 +43,7 @@ try

File deps2Dir = new File( basedir, "target/dependencies2" );
antJar = new File( deps2Dir, "ant-1.10.14.jar" );
junitJar = new File( deps2Dir, "junit-jupiter-api-5.10.1.jar" );
junitJar = new File( deps2Dir, "junit-jupiter-api-5.10.2.jar" );

if ( ! antJar.exists() || antJar.isDirectory() )
{
Expand Down

0 comments on commit 96ed3b0

Please sign in to comment.