Skip to content
Merged
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 @@ -255,7 +255,7 @@ public void testAcquireSegment() throws IOException, ExecutionException, Interru
@Test
public void testAcquireSegmentFailTooManySegments() throws IOException
{
final File localStorageFolder = new File("local_storage_folder");
final File localStorageFolder = new File(tempDir, "local_storage_folder");

final Interval interval = Intervals.of("2019-01-01/P1D");
makeSegmentsToLoad(20, localStorageFolder, interval, segmentsToLoad);
Expand All @@ -281,7 +281,7 @@ public void testAcquireSegmentFailTooManySegments() throws IOException
@Test
public void testAcquireSegmentBulkFailTooManySegments() throws IOException
{
final File localStorageFolder = new File("local_storage_folder");
final File localStorageFolder = new File(tempDir, "local_storage_folder");

final Interval interval = Intervals.of("2019-01-01/P1D");
makeSegmentsToLoad(30, localStorageFolder, interval, segmentsToLoad);
Expand Down
Loading