diff options
author | Matus Valo <matusvalo@gmail.com> | 2020-08-16 00:28:25 +0200 |
---|---|---|
committer | Asif Saif Uddin <auvipy@gmail.com> | 2020-08-17 10:16:05 +0600 |
commit | 04cf759625aad8dcf42b09f2b08199fdd32a9539 (patch) | |
tree | 9259f25b752db9f85ec16e415557cfc4ca4e19b2 /t | |
parent | bd1a71215e560a1eb7a35d53b6d3a647778ff9e7 (diff) | |
download | kombu-04cf759625aad8dcf42b09f2b08199fdd32a9539.tar.gz |
Replace case.skip.todo with pytest
Diffstat (limited to 't')
-rw-r--r-- | t/unit/test_connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/unit/test_connection.py b/t/unit/test_connection.py index 1e3c7706..9f388ddd 100644 --- a/t/unit/test_connection.py +++ b/t/unit/test_connection.py @@ -102,7 +102,7 @@ class test_connection_utils: # see Appendix A of http://www.rabbitmq.com/uri-spec.html self.assert_info(Connection(url), **expected) - @skip.todo('urllib cannot parse ipv6 urls') + @pytest.mark.skip('TODO: urllib cannot parse ipv6 urls') def test_url_IPV6(self): self.assert_info( Connection('amqp://[::1]'), |