From 6d65bd23813bd8c7c66f8e34e028bc8308699282 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 18:26:40 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_read_h5_array.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_read_h5_array.cxx b/tests/test_read_h5_array.cxx index b39834d..acef842 100644 --- a/tests/test_read_h5_array.cxx +++ b/tests/test_read_h5_array.cxx @@ -16,12 +16,11 @@ class HDF5ReadTest : public ::testing::Test { test_file_path = std::filesystem::current_path() / "data/cut_strong.refl"; // Create the empty dataset if it does not exist - create_empty_dataset(test_file_path, - "/dials/processing/empty_dataset"); + create_empty_dataset(test_file_path, "/dials/processing/empty_dataset"); } void create_empty_dataset(const std::string &filename, - const std::string &dataset_path) { + const std::string &dataset_path) { // Open the HDF5 file hid_t file = H5Fopen(filename.c_str(), H5F_ACC_RDWR, H5P_DEFAULT); if (file < 0) {