Skip to content

Commit

Permalink
fix: constructor asyn resolver test
Browse files Browse the repository at this point in the history
  • Loading branch information
justRkive committed Nov 2, 2023
1 parent 00d6088 commit fa52d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolver/async_resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ mod async_resolver_test {
let config = ResolverConfig::default();
let resolver = AsyncResolver::new(config.clone());
assert_eq!(resolver.config, config);
assert_eq!(resolver.config.get_timeout(), Duration::from_secs(10));
assert_eq!(resolver.config.get_timeout(), Duration::from_secs(TIMEOUT));
}


Expand Down

0 comments on commit fa52d51

Please sign in to comment.