mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
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:
parent
09a5ef505b
commit
5e57734346
1 changed files with 6 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue