summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-04-13 16:11:15 (GMT)
committerGitHub <noreply@github.com>2023-04-13 16:11:15 (GMT)
commitb8529623eb0eb4fb67f12ae44ecedd5ad447c4b6 (patch)
tree655a3737ae544eeabaca16f6656ad16423be72ce /java
parent2aa55e242c5dfe925834e79a508d331cd7eb0793 (diff)
downloadhdf5-b8529623eb0eb4fb67f12ae44ecedd5ad447c4b6.zip
hdf5-b8529623eb0eb4fb67f12ae44ecedd5ad447c4b6.tar.gz
hdf5-b8529623eb0eb4fb67f12ae44ecedd5ad447c4b6.tar.bz2
Change name of test file to avoid conflict (#2705)
Diffstat (limited to 'java')
-rw-r--r--java/test/TestH5OcopyOld.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/TestH5OcopyOld.java b/java/test/TestH5OcopyOld.java
index 6353df5..0fa57e6 100644
--- a/java/test/TestH5OcopyOld.java
+++ b/java/test/TestH5OcopyOld.java
@@ -249,7 +249,7 @@ public class TestH5OcopyOld {
try {
// create new file
- H5fid2 = H5.H5Fcreate("copy.h5", HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT,
+ H5fid2 = H5.H5Fcreate("copy_old.h5", HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT,
HDF5Constants.H5P_DEFAULT);
assertTrue("testH5OcopyRefsDatasettodiffFile.H5Fcreate: ", H5fid2 >= 0);
H5.H5Fflush(H5fid2, HDF5Constants.H5F_SCOPE_LOCAL);
@@ -288,7 +288,7 @@ public class TestH5OcopyOld {
catch (Exception ex) {
}
}
- _deleteFile("copy.h5");
+ _deleteFile("copy_old.h5");
}
@Test