mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-24 08:19:10 +01:00
Fix parameterized tests for junit 5
This commit is contained in:
@@ -120,15 +120,15 @@ public final class IntegrationTestUtil
|
||||
}
|
||||
}
|
||||
|
||||
public static Collection<String> createRepositoryTypeParameters() {
|
||||
Collection<String> params = new ArrayList<>();
|
||||
public static Collection<String[]> createRepositoryTypeParameters() {
|
||||
Collection<String[]> params = new ArrayList<>();
|
||||
|
||||
params.add("git");
|
||||
params.add("svn" );
|
||||
params.add(new String[] {"git"});
|
||||
params.add(new String[] {"svn"});
|
||||
|
||||
if (IOUtil.search("hg") != null)
|
||||
{
|
||||
params.add("hg");
|
||||
params.add(new String[] {"hg"});
|
||||
}
|
||||
|
||||
return params;
|
||||
|
||||
Reference in New Issue
Block a user