From 4657c5dbc0be0b52ba58a0e957a8195b43b63cbd Mon Sep 17 00:00:00 2001 From: joalopez1206 Date: Mon, 9 Sep 2024 12:21:53 -0300 Subject: [PATCH] changed to false, because there is an error in rrsig parsing --- tests/edns_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/edns_test.rs b/tests/edns_test.rs index 266fb277..ece30904 100644 --- a/tests/edns_test.rs +++ b/tests/edns_test.rs @@ -24,7 +24,7 @@ async fn query_response_edns(domain_name: &str, #[tokio::test] async fn query_a_type_edns() { - let response = query_response_edns("example.com", "UDP", "A", Some(1024), 0, true, Some(vec![3])).await; + let response = query_response_edns("example.com", "UDP", "A", Some(1024), 0, false, Some(vec![3])).await; if let Ok(rrs) = response { assert_eq!(rrs.get_answer().len(), 1);