Skip to content

Commit d574fce

Browse files
committed
Remove test code for CI
1 parent 8b1d18a commit d574fce

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

crates/batcher/src/types/batch_queue.rs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ use std::{
1212
use super::errors::BatcherError;
1313
use crate::connection::WsMessageSink;
1414

15-
#[cfg(test)]
16-
const _TRY_BUILD_BATCH_VISIBLE_UNDER_TEST: fn() = try_build_batch;
17-
1815
#[derive(Clone)]
1916
pub(crate) struct BatchQueueEntry {
2017
pub(crate) nonced_verification_data: NoncedVerificationData,
@@ -205,23 +202,13 @@ fn calculate_fee_per_proof(batch_len: usize, gas_price: U256, constant_gas_cost:
205202
#[cfg(test)]
206203
mod test {
207204

208-
#[test]
209-
fn print_parent_info() {
210-
// Should compile if test’s parent is the module that defines the function
211-
let _f: fn(_, _, _) = super::try_build_batch;
212-
213-
// Print the path rustc believes this module is
214-
eprintln!("module_path: {}", module_path!());
215-
eprintln!("file!: {}", file!());
216-
}
217-
218205
use aligned_sdk::common::constants::DEFAULT_CONSTANT_GAS_COST;
219206
use aligned_sdk::common::types::ProvingSystemId;
220207
use aligned_sdk::common::types::VerificationData;
221208
use ethers::types::Address;
222209

223-
use super::*;
224210
use super::try_build_batch;
211+
use super::*;
225212

226213
#[test]
227214
fn batch_finalization_algorithm_works_from_same_sender() {

0 commit comments

Comments
 (0)