summaryrefslogtreecommitdiffstats
path: root/java/test
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-04-12 19:50:46 (GMT)
committerGitHub <noreply@github.com>2023-04-12 19:50:46 (GMT)
commite94071fe53f7657d684c616988824e1bb0ef49c5 (patch)
tree8cdcb8fde2dff171664ad76595bac97909c16e6d /java/test
parent7b464842928f9ab8177c3144f024e5bb96e07194 (diff)
downloadhdf5-e94071fe53f7657d684c616988824e1bb0ef49c5.zip
hdf5-e94071fe53f7657d684c616988824e1bb0ef49c5.tar.gz
hdf5-e94071fe53f7657d684c616988824e1bb0ef49c5.tar.bz2
Change name of test file to avoid conflict (#2701)
Diffstat (limited to 'java/test')
-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