Skip to content

Commit

Permalink
Replace * import with full qualified import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
henning-gerhardt committed Jul 31, 2024
1 parent 40b43e9 commit 811c1d2
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@

package org.kitodo.production.services.command;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;

import java.io.File;
import java.io.IOException;
import java.nio.file.Paths;
Expand All @@ -24,8 +29,6 @@
import org.kitodo.ExecutionPermission;
import org.kitodo.api.command.CommandResult;

import static org.junit.jupiter.api.Assertions.*;

public class CommandServiceTest {
private static String scriptExtension;
private static String scriptPath = "src/test/resources/scripts/";
Expand Down

0 comments on commit 811c1d2

Please sign in to comment.