Skip to content

Commit

Permalink
Internal change.
Browse files Browse the repository at this point in the history
RELNOTES=n/a
PiperOrigin-RevId: 602490837
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Jan 29, 2024
1 parent 9aa7ee6 commit b4d4adf
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions guava-tests/test/com/google/common/io/MoreFilesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,8 @@ public void testTouch() throws IOException {
assertTrue(Files.exists(temp));
Files.delete(temp);
assertFalse(Files.exists(temp));
MoreFiles.touch(temp);

if (isAndroid()) {
// TODO: b/317997723 - Test touch() more after it works under Android's library desugaring.
return;
}

MoreFiles.touch(temp);
assertTrue(Files.exists(temp));
MoreFiles.touch(temp);
assertTrue(Files.exists(temp));
Expand Down

0 comments on commit b4d4adf

Please sign in to comment.