Skip to content

Commit

Permalink
Fix PythonBlock compilation error.
Browse files Browse the repository at this point in the history
Signed-off-by: drslebedev <[email protected]>
  • Loading branch information
drslebedev committed Aug 28, 2024
1 parent eea05ca commit 0e424a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blocks/basic/test/qa_PythonBlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def process_bulk(ins, outs):
}
expect(!throws);

expect(eq(sink.n_samples_produced, 5U)) << "sinkOne did not consume enough input samples";
expect(eq(sink._nSamplesProduced, 5U)) << "sinkOne did not consume enough input samples";
expect(eq(sink._samples, std::vector<std::int32_t>{0, 2, 4, 6, 8})) << fmt::format("mismatch of vector {}", sink._samples);
};

Expand Down Expand Up @@ -264,7 +264,7 @@ def process_bulk(ins, outs):
}
expect(!throws);

expect(eq(sink.n_samples_produced, 5U)) << "sinkOne did not consume enough input samples";
expect(eq(sink._nSamplesProduced, 5U)) << "sinkOne did not consume enough input samples";
expect(eq(sink._samples, std::vector<float>{0.f, 2.f, 4.f, 6.f, 8.f})) << fmt::format("mismatch of vector {}", sink._samples);
};
};
Expand Down

0 comments on commit 0e424a2

Please sign in to comment.