From 6f3535eb38f0e8f000f39c65f70fabf52829a758 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Mon, 5 Aug 2024 10:46:48 +0300 Subject: [PATCH] Fix failing test --- spec/decode/dns.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/decode/dns.spec.js b/spec/decode/dns.spec.js index 379e438..8eab0d1 100644 --- a/spec/decode/dns.spec.js +++ b/spec/decode/dns.spec.js @@ -44,7 +44,7 @@ describe("Dns", function(){ it("sets #header.isRecursionDesired to true if a recursive look up was desired", function() { this.instance.decode(this.example, 0); - this.instance.header.should.have.property("isRecursionDesired", false); + this.instance.header.should.have.property("isRecursionDesired", true); }); it("sets #header.isRecursionAvailible to true if the server supports recursion", function() {