Change name of test file to avoid conflict (#2701)

This commit is contained in:
Allen Byrne 2023-04-12 14:50:46 -05:00 committed by GitHub
parent 7b46484292
commit e94071fe53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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