Skip to content

Commit

Permalink
Update testRecordingWorkflow.cpp due to error in merge
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel authored Sep 20, 2024
1 parent ffffdc5 commit 360662b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testRecordingWorkflow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ TEST_CASE("writeContinuousData", "[recording]")
for (const auto& channel : channelVector) {
// copy data into buffer
std::copy(
mockData[channel.globalIndex].begin()
mockData[channel.getGlobalIndex()].begin()
+ static_cast<std::ptrdiff_t>(samplesRecorded),
mockData[channel.globalIndex].begin()
mockData[channel.getGlobalIndex()].begin()
+ static_cast<std::ptrdiff_t>(samplesRecorded + bufferSize),
dataBuffer.begin());
std::copy(
Expand Down

0 comments on commit 360662b

Please sign in to comment.