Skip to content

Commit

Permalink
First change to validate
Browse files Browse the repository at this point in the history
  • Loading branch information
postmeback committed Jul 21, 2023
1 parent dfcb336 commit 13ef8e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions validator_client/src/doppelganger_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,9 @@ impl DoppelgangerService {
#[cfg(test)]
mod test {
use super::*;
use environment::null_logger;
// use environment::null_logger;
use futures::executor::block_on;
use logging::test_logger;
use slot_clock::TestingSlotClock;
use std::collections::HashSet;
use std::future;
Expand Down Expand Up @@ -717,7 +718,7 @@ mod test {
fn build(self) -> TestScenario {
let mut rng = XorShiftRng::from_seed([42; 16]);
let slot_clock = TestingSlotClock::new(Slot::new(0), GENESIS_TIME, SLOT_DURATION);
let log = null_logger().unwrap();
let log = test_logger().unwrap();

TestScenario {
validators: (0..self.validator_count)
Expand Down

0 comments on commit 13ef8e8

Please sign in to comment.