Skip to content

Commit

Permalink
fix(config): revert 323218d commit to prevent merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
steph-rs committed Oct 11, 2023
1 parent de82048 commit 43251e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/config/tests/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ fn test_default_config() {
assert_eq!(config.rollup_client, RollupClient::default());
assert_eq!(config.challenger, ChallengerAgent::default());

assert!(!config.enable_sequencing);
assert!(!config.enable_fault_proofs);
assert_eq!(config.enable_sequencing, false);
assert_eq!(config.enable_fault_proofs, false);
}

#[test]
Expand Down Expand Up @@ -47,8 +47,8 @@ fn test_read_config_from_toml() {
assert_eq!(config.l2_client, L2Client::OpReth);
assert_eq!(config.rollup_client, RollupClient::Magi);
assert_eq!(config.challenger, ChallengerAgent::OpChallengerGo);
assert!(config.enable_sequencing);
assert!(config.enable_fault_proofs);
assert_eq!(config.enable_sequencing, true);
assert_eq!(config.enable_fault_proofs, true);

// Drop the `tmpdir` variable, which deletes the temporary directory.
drop(tmpdir);
Expand Down

0 comments on commit 43251e9

Please sign in to comment.