Skip to content

Commit ae49386

Browse files
Fixing ebool tests
Update #548
1 parent 8857cd6 commit ae49386

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/contrib/nexus/attribute_h5py_bool_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static datatype::EBool read_ebool(const attribute::Attribute& attr) {
3939

4040
SCENARIO("Reading bool attributes written by h5py") {
4141
auto h5py_file =
42-
file::open("./../h5py_test_boolattr.h5", file::AccessFlags::ReadOnly);
42+
file::open("./../../h5py_test_boolattr.h5", file::AccessFlags::ReadOnly);
4343
auto root_group = h5py_file.root();
4444

4545
// ==========================================================================

test/contrib/nexus/attribute_pniio_bool_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using namespace hdf5;
3131

3232
SCENARIO("Reading bool attributes created by the PNIIO library") {
3333
auto h5file =
34-
file::open("../pniio_test_boolattr.h5", file::AccessFlags::ReadOnly);
34+
file::open("../../pniio_test_boolattr.h5", file::AccessFlags::ReadOnly);
3535
auto root = h5file.root();
3636

3737
GIVEN("a scalar bool attribute with value true") {

test/contrib/nexus/dataset_h5py_bool_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ using namespace hdf5;
3333

3434
SCENARIO("testing h5py compatiable booleans") {
3535
auto h5py_file =
36-
file::open("../h5py_test_boolattr.h5", file::AccessFlags::ReadOnly);
36+
file::open("../../h5py_test_boolattr.h5", file::AccessFlags::ReadOnly);
3737
auto root_group = h5py_file.root();
3838

3939
// =========================================================================

test/contrib/nexus/dataset_pniio_bool_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ using namespace hdf5;
3333

3434
SCENARIO("testing pniio bool compatibility") {
3535
auto file =
36-
file::open("../pniio_test_boolattr.h5", file::AccessFlags::ReadOnly);
36+
file::open("../../pniio_test_boolattr.h5", file::AccessFlags::ReadOnly);
3737
auto root = file.root();
3838

3939
GIVEN("a datast with a scalar dataspace storing a true value") {

0 commit comments

Comments
 (0)