Skip to content

Commit

Permalink
Use the correct RunnableHandler for testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwoodiupui committed Feb 23, 2023
1 parent 170ad76 commit 5d20be7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -13,7 +13,7 @@
import java.nio.file.Path;

import org.dspace.AbstractIntegrationTest;
import org.dspace.scripts.handler.impl.CommandLineDSpaceRunnableHandler;
import org.dspace.app.scripts.handler.impl.TestDSpaceRunnableHandler;
import org.dspace.util.DSpaceConfigurationInitializer;
import org.dspace.util.DSpaceKernelInitializer;
import org.junit.Ignore;
Expand Down Expand Up @@ -67,7 +67,7 @@ public void testInternalRunGetZip()
// Create and configure the test instance.
GetGithubRelease instance = new GetGithubRelease();
instance.configuration = new GetGithubReleaseScriptConfiguration();
instance.initialize(args, new CommandLineDSpaceRunnableHandler(), eperson);
instance.initialize(args, new TestDSpaceRunnableHandler(), eperson);

// Test!
instance.run();
Expand Down

0 comments on commit 5d20be7

Please sign in to comment.