Skip to content

Commit

Permalink
Remove redundant '!!'.
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith Bennett committed Feb 19, 2015
1 parent 0471d92 commit 123702b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tc_recur.rb
Expand Up @@ -23,7 +23,7 @@ def test_recur
# Dnsruby::TheLog.level = Logger::DEBUG
ret = r.query("uk", Dnsruby::Types.DNSKEY)
# print ret
assert !!ret, "Query result was nil."
assert ret, "Query result was nil."
assert ret.answer.length > 0, "Answer length should > 0, but was #{ret.answer.length}."
# ret = r.query_dorecursion("aaa.bigzone.uk-dnssec.nic.uk", Dnsruby::Types.DNSKEY)
# ret = r.query_dorecursion("uk-dnssec.nic.uk", Dnsruby::Types.DNSKEY)
Expand Down

0 comments on commit 123702b

Please sign in to comment.