Commit 58bc460b by kimvde Committed by Oliver Woodman

Write extractor dumps to testdata

PiperOrigin-RevId: 294465827
parent fed0acc2
......@@ -127,7 +127,7 @@ public final class FakeExtractorOutput implements ExtractorOutput, Dumper.Dumpab
String actual = new Dumper().add(this).toString();
if (WRITE_DUMP) {
File file = new File(System.getProperty("user.dir"), "src/test/assets");
File file = new File(System.getProperty("user.dir"), "../../testdata/src/test/assets");
file = new File(file, dumpFile);
Assertions.checkStateNotNull(file.getParentFile()).mkdirs();
PrintWriter out = new PrintWriter(file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment