Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ fn print_times(
table.printstd();

assert!(
tps > MIN_TPS,
tps >= MIN_TPS,
"TPS {tps} dropped below {MIN_TPS}, investigation is needed"
);
assert!(
tps < MAX_TPS,
"TPS {tps} reached unrealistic number {MAX_TPS}, investigation is needed"
tps <= MAX_TPS,
"TPS {tps} exceeded unrealistic number {MAX_TPS}, investigation is needed"
);
}

Expand Down
2 changes: 1 addition & 1 deletion examples/demo-rollup/tests/restart/graceful.rs
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ async fn check_with_increasing_stf_infos(
.unwrap();
assert!(
slot.number > last_processed_slot_number,
"Received notification for slot n={} is lower than last seen: {}",
"Received notification for slot n={} is not greater than last seen: {}",
slot.number,
last_processed_slot_number
);
Expand Down
Loading