summaryrefslogtreecommitdiff
path: root/tests/integration/run_tests.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2024-06-05 17:39:39 -0400
committerGitHub <noreply@github.com>2024-06-05 23:39:39 +0200
commitc7894447eb5be069c9b075447f0a2f7871b3d8a1 (patch)
treed72b033187d0cd1e3015ca3c7ca4133c0502f555 /tests/integration/run_tests.rs
parent566adb7c0a0c0845e90a6e867a2c0ef5d2ada575 (diff)
chore: upgrade trust-dns-resolver and friends (#24108)
To avoid duplicate winreg crate in #24056 --------- Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'tests/integration/run_tests.rs')
-rw-r--r--tests/integration/run_tests.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs
index 55841b901..0dadc0079 100644
--- a/tests/integration/run_tests.rs
+++ b/tests/integration/run_tests.rs
@@ -4011,11 +4011,8 @@ async fn test_resolve_dns() {
)
.unwrap();
let lexer = Lexer::new(&zone_file);
- let records = Parser::new().parse(
- lexer,
- Some(Name::from_str("example.com").unwrap()),
- None,
- );
+ let records =
+ Parser::new().parse(lexer, Some(Name::from_str("example.com").unwrap()));
if records.is_err() {
panic!("failed to parse: {:?}", records.err())
}