Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
markrileybot committed Apr 17, 2018
1 parent e12614a commit dd1b34c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import java.util.List;
import java.util.function.BiConsumer;
import java.util.function.Function;
import java.util.zip.GZIPInputStream;

public class HsInputOutputStreamNumberArraysTest {

Expand Down Expand Up @@ -68,7 +69,8 @@ public <T> void testArrayReadWrite(Function<String, T> stringMapper,
List<T> written = new ArrayList<>();
List<T> read = new ArrayList<>();

try (BufferedReader r = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream("/testdata/arrays.csv")))) {
try (BufferedReader r = new BufferedReader(new InputStreamReader(
new GZIPInputStream(getClass().getResourceAsStream("/testdata/arrays.csv.gz"))))) {
String l;
ByteArrayOutputStream output = new ByteArrayOutputStream();

Expand Down
Binary file added src/test/resources/testdata/arrays.csv.gz
Binary file not shown.

0 comments on commit dd1b34c

Please sign in to comment.