Skip to content

Commit

Permalink
refactor: rename benchmark_tests to regression_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aner-starkware committed Jul 9, 2024
1 parent 1a814b9 commit f6bb52e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/committer_cli/src/tests.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[cfg(test)]
pub mod benchmark_tests;
pub mod python_tests;
#[cfg(test)]
pub mod regression_tests;
pub mod utils;
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl<'de> Deserialize<'de> for TreeRegressionInput {

#[ignore = "To avoid running the benchmark test in Coverage or without the --release flag."]
#[tokio::test(flavor = "multi_thread")]
pub async fn test_benchmark_single_tree() {
pub async fn test_regression_single_tree() {
let TreeRegressionInput {
tree_flow_input:
TreeFlowInput {
Expand Down Expand Up @@ -117,7 +117,7 @@ pub async fn test_benchmark_single_tree() {

#[ignore = "To avoid running the benchmark test in Coverage or without the --release flag."]
#[tokio::test(flavor = "multi_thread")]
pub async fn test_benchmark_committer_flow() {
pub async fn test_regression_committer_flow() {
let CommitterRegressionInput {
committer_input,
contract_states_root: expected_contract_states_root,
Expand Down

0 comments on commit f6bb52e

Please sign in to comment.