Skip to content

Commit

Permalink
Merge pull request AleoNet#2548 from ProvableHQ/fix/updatable-count
Browse files Browse the repository at this point in the history
[Fix] Update line count in test
  • Loading branch information
zosorock authored Sep 10, 2024
2 parents abd6cc4 + c5ecfe6 commit 3d42aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circuit/environment/src/helpers/updatable_count.rs
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ mod test {
fn check_position() {
let count = count_is!(0, 0, 0, 0);
assert_eq!(count.file, "circuit/environment/src/helpers/updatable_count.rs");
assert_eq!(count.line, 499);
assert_eq!(count.line, 500);
assert_eq!(count.column, 21);
}

Expand Down

1 comment on commit 3d42aa0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'snarkVM Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.50.

Benchmark suite Current: 3d42aa0 Previous: d170a9f Ratio
Block::to_string (serde_json) 576472 ns/iter (± 2106) 330685 ns/iter (± 917) 1.74
Block::from_bytes_le 116595730 ns/iter (± 367860) 58401476 ns/iter (± 87187) 2.00
Block::deserialize (bincode) 116520704 ns/iter (± 314947) 58627330 ns/iter (± 1754535) 1.99
Block::from_str (serde_json) 119765193 ns/iter (± 185131) 60227763 ns/iter (± 127566) 1.99

This comment was automatically generated by workflow using github-action-benchmark.

CC: @raychu86

Please sign in to comment.