Skip to content

Commit

Permalink
Revert change to tests used for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Sep 1, 2024
1 parent b2959d2 commit 37d30d3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/testBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ TEST_CASE("TimeSeries", "[base]")
std::vector<SizeType> dataShape = {numSamples};
std::vector<SizeType> positionOffset = {0};
BaseDataType dataType = BaseDataType::F32;
std::vector<float> data = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; // getMockData1D(numSamples);
std::vector<float> data = getMockData1D(numSamples);
BaseDataType timestampsType = BaseDataType::F64;
std::vector<double> timestamps = getMockTimestamps(numSamples, 1);

Expand Down

0 comments on commit 37d30d3

Please sign in to comment.