We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The test/test.py fails on test_query_txt_bytes1 since the domain like.com.ca does not longer exists:
test/test.py
test_query_txt_bytes1
like.com.ca
FAIL: test_query_txt_bytes1 (__main__.DNSTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "F:\MingW32\src\inet\DNS\c-ares\PyCares\tests\tests.py", line 206, in test_query_txt_bytes1 self.assertEqual(self.errorno, None) AssertionError: 12 != None
12 == ARES_ETIMEOUT. But changing it to like.com, all seems okay:
ARES_ETIMEOUT
like.com
--- a/tests/tests.py 2017-11-16 21:09:56 +++ b/tests/tests.py 2018-06-07 16:23:10 @@ -201,7 +201,7 @@ self.result, self.errorno = None, None def cb(result, errorno): self.result, self.errorno = result, errorno - self.channel.query('like.com.sa', pycares.QUERY_TYPE_TXT, cb) + self.channel.query('like.com', pycares.QUERY_TYPE_TXT, cb) self.wait() self.assertEqual(self.errorno, None)
The text was updated successfully, but these errors were encountered:
I can confirm that the test fails. I'm testing on FreeBSD 11.2.
Sorry, something went wrong.
Care to send a PR? I'm a bit busy these days, sorry..
I think it was fixed in 03e9320
No branches or pull requests
The
test/test.py
fails ontest_query_txt_bytes1
since the domainlike.com.ca
does not longer exists:12 ==
ARES_ETIMEOUT
.But changing it to
like.com
, all seems okay:The text was updated successfully, but these errors were encountered: