disable system-local test

This commit is contained in:
Jonathan Shook 2024-04-03 10:54:51 -05:00
parent 323792480e
commit b2a4f68dd9

View File

@ -38,16 +38,16 @@ public class DirectoryLinesStableTest {
assertThat(directoryLines.apply(Long.MAX_VALUE)).isEqualTo("data2.txt-line3");
}
@Test
public void testOverRangeIssue() {
DirectoryLinesStable directoryLines = new DirectoryLinesStable(
"../local/testdirlines", ".+jsonl"
);
for (long i = 0; i < 40000; i++) {
String result = directoryLines.apply(i);
}
}
// @Test
// public void testOverRangeIssue() {
// DirectoryLinesStable directoryLines = new DirectoryLinesStable(
// "exampledata/local/testdirlines", ".+jsonl"
// );
// for (long i = 0; i < 40000; i++) {
// String result = directoryLines.apply(i);
// }
//
// }
}