Skip to content

Commit

Permalink
Fix format check errors
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Aug 25, 2024
1 parent d660b60 commit 046c292
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/examples/test_example.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// [example_all]
#include <catch2/catch_test_macros.hpp>

#include "hdf5/HDF5IO.hpp"
#include "testUtils.hpp"

Expand All @@ -9,8 +10,9 @@ TEST_CASE("SimpleExamples", "[hdf5io]")
{
std::string path = getTestFilePath("testWithSWMRMode.h5");
// [example_hdf5io_code_snippet]
std::unique_ptr<AQNWB::HDF5::HDF5IO> hdf5io = std::make_unique<AQNWB::HDF5::HDF5IO>(path);
// [example_hdf5io_code_snippet]
std::unique_ptr<AQNWB::HDF5::HDF5IO> hdf5io =
std::make_unique<AQNWB::HDF5::HDF5IO>(path);
// [example_hdf5io_code_snippet]
hdf5io->open();
hdf5io->close();
}
Expand Down

0 comments on commit 046c292

Please sign in to comment.