Skip to content

Commit 582ee7e

Browse files
committed
use serialization_test_data instead of target2 for cross-repo test data
1 parent fcded46 commit 582ee7e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ tmp/
4949

5050
# Build artifacts
5151
target/
52-
target2/
52+
serialization_test_data/
5353
out/
5454
build/
5555
jarsIn/

src/test/java/org/apache/datasketches/common/TestUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ public final class TestUtil {
5252
/**
5353
* The full target Path for Java serialized sketches to be tested by other languages.
5454
*/
55-
public static final Path javaPath = createPath("target2/java_generated_files");
55+
public static final Path javaPath = createPath("serialization_test_data/java_generated_files");
5656

5757
/**
5858
* The full target Path for C++ serialized sketches to be tested by Java.
5959
*/
60-
public static final Path cppPath = createPath("target2/cpp_generated_files");
60+
public static final Path cppPath = createPath("serialization_test_data/cpp_generated_files");
6161

6262
private static Path createPath(final String projectLocalDir) {
6363
try {

0 commit comments

Comments
 (0)