From b175b17bd4c36da95cd7ed4fb5e63304712100bc Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Thu, 8 Aug 2024 18:04:55 -0700 Subject: [PATCH] Fix codespell --- tests/testHDF5IO_docs_examples.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testHDF5IO_docs_examples.cpp b/tests/testHDF5IO_docs_examples.cpp index 422f5c4e..ec462042 100644 --- a/tests/testHDF5IO_docs_examples.cpp +++ b/tests/testHDF5IO_docs_examples.cpp @@ -27,10 +27,10 @@ TEST_CASE("SWMRmodeExamples", "[hdf5io]") hdf5io->open(); // add a dataset - std::vector testData(10000); + std::vector testData(10000); // Initialize the testData to 0, 1, 2, ... 10000 with std::iota std::iota(testData.begin(), testData.end(), - 1); // Initalize the testData to 0, 1, 2, ... 10000 + 1); std::string dataPath = "/data"; SizeType numBlocks = 10; // write 10 chunks of SizeType numSamples = testData.size();