ebyhr commented on issue #13506:
URL: https://github.com/apache/iceberg/issues/13506#issuecomment-3055653279
@saumyapandey1998 We can change the logic to create a file under `temp`
directory something like:
```java
File testFile = File.createTempFile("junit", null, temp.toFile());
assertThat(testFile.delete()).as("Delete should succeed").isTrue();
```
↓
```java
File testFile = temp.resolve("parquet").toFile();
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]