mirror of https://github.com/apache/druid.git
Remove duplicate parameters from test (#10022)
Commit 771870ae2d
removed constructor
arguments from the rules. Therefore multiple parameters of the test are
now the same and can be removed.
This commit is contained in:
parent
c6d2b94d7b
commit
369ed2503e
|
@ -43,14 +43,8 @@ public class BroadcastDistributionRuleSerdeTest
|
|||
public static List<Object[]> constructorFeeder()
|
||||
{
|
||||
return Lists.newArrayList(
|
||||
new Object[]{new ForeverBroadcastDistributionRule()},
|
||||
new Object[]{new ForeverBroadcastDistributionRule()},
|
||||
new Object[]{new ForeverBroadcastDistributionRule()},
|
||||
new Object[]{new IntervalBroadcastDistributionRule(Intervals.of("0/1000"))},
|
||||
new Object[]{new IntervalBroadcastDistributionRule(Intervals.of("0/1000"))},
|
||||
new Object[]{new IntervalBroadcastDistributionRule(Intervals.of("0/1000"))},
|
||||
new Object[]{new PeriodBroadcastDistributionRule(new Period(1000), null)},
|
||||
new Object[]{new PeriodBroadcastDistributionRule(new Period(1000), null)},
|
||||
new Object[]{new PeriodBroadcastDistributionRule(new Period(1000), null)}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue