Skip to content

Commit

Permalink
Test codegen fixups
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Hollensbe <[email protected]>
  • Loading branch information
erikh committed May 14, 2022
1 parent 269bc88 commit d07b193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/service/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ impl Service {
}
}

if let Some(v6assign) = tn.network.config.clone().unwrap().v_6_assign_mode {
if v6assign.rfc_4193.unwrap_or(false) {
if let Some(v6assign) = tn.network.config.clone().unwrap().v6_assign_mode {
if v6assign.rfc4193.unwrap_or(false) {
let cidr = tn.network.clone().rfc4193().unwrap();
if !authority_map.contains_key(&cidr) {
let ptr_authority = RecordAuthority::new(
Expand Down

0 comments on commit d07b193

Please sign in to comment.