Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists;
import mockit.Expectations;
import mockit.Mocked;
import mockit.Injectable;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

Expand All @@ -57,9 +57,9 @@
class PruneOlapScanTabletTest extends SqlTestBase implements MemoPatternMatchSupported {

@Test
void testPruneOlapScanTablet(@Mocked OlapTable olapTable,
@Mocked Partition partition, @Mocked MaterializedIndex index,
@Mocked HashDistributionInfo distributionInfo) {
void testPruneOlapScanTablet(@Injectable OlapTable olapTable,
@Injectable Partition partition, @Injectable MaterializedIndex index,
@Injectable HashDistributionInfo distributionInfo) {
List<Long> tabletIds = Lists.newArrayListWithExpectedSize(300);
for (long i = 0; i < 300; i++) {
tabletIds.add(i);
Expand Down
Loading