Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Aug 9, 2024
1 parent b175b17 commit ba9fcc4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/testHDF5IO_docs_examples.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ TEST_CASE("SWMRmodeExamples", "[hdf5io]")
hdf5io->open();

// add a dataset
std::vector<int> testData(10000); // Initialize the testData to 0, 1, 2, ... 10000 with std::iota
std::iota(testData.begin(),
testData.end(),
1);
std::vector<int> testData(10000);
std::iota(testData.begin(), testData.end(), 1); // Initialize testData
std::string dataPath = "/data";
SizeType numBlocks = 10; // write 10 chunks of
SizeType numSamples = testData.size();
Expand Down

0 comments on commit ba9fcc4

Please sign in to comment.