Update the comment of WRITE_TO_DEVICE enum

The previous comment was not super clear on how to
replace the dump files in the project directory.

PiperOrigin-RevId: 679136624
This commit is contained in:
sheenachhabra 2024-09-26 07:15:03 -07:00 committed by Copybara-Service
parent 09a5ef505b
commit 5e57734346

View File

@ -72,7 +72,12 @@ public class DumpFileAsserts {
*/ */
private static final int WRITE_TO_LOCAL = 1; private static final int WRITE_TO_LOCAL = 1;
/** Write output to folder {@code /storage/emulated/0/Android/data} of device. */ /**
* Write output to folder {@code /storage/emulated/0/Android/data} of device.
*
* <p>The output dump file needs to be manually copied to the project folder {@code
* testdata/src/test}.
*/
private static final int WRITE_TO_DEVICE = 1 << 1; private static final int WRITE_TO_DEVICE = 1 << 1;
private static final @DumpFilesAction int DUMP_FILE_ACTION = COMPARE_WITH_EXISTING; private static final @DumpFilesAction int DUMP_FILE_ACTION = COMPARE_WITH_EXISTING;