Skip to content

Commit

Permalink
Merge pull request redpanda-data#6759 from bharathv/fix_stale_check
Browse files Browse the repository at this point in the history
tests: Fix stale concept check
  • Loading branch information
dotnwat committed Nov 30, 2022
2 parents dc9eb61 + be0be88 commit b351318
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/v/storage/tests/storage_test_fixture.h
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ class storage_test_fixture {

// clang-format off
template<typename T = random_batches_generator>
requires requires(T generator) {
{ generator() } -> std::same_as<ss::circular_buffer<model::record_batch>>;
requires requires(T generator, std::optional<model::timestamp> ts) {
{ generator(ts) } -> std::same_as<ss::circular_buffer<model::record_batch>>;
}
// clang-format on
std::vector<model::record_batch_header> append_random_batches(
Expand Down

0 comments on commit b351318

Please sign in to comment.