2
0
mirror of https://github.com/openkmip/pykmip synced 2025-12-22 19:23:27 +00:00

Fix pending deprecation warnings caused by dependency upgrades

This change fixes various pending deprecation warnings throughout
the library caused by recent updates to different dependencies.
While PyKMIP no longer directly triggers these warnings, some
dependencies still do when run through the test suite.
This commit is contained in:
Peter Hamilton
2018-11-16 11:42:05 -05:00
parent 257fcca477
commit 9a5db6d5e1
48 changed files with 583 additions and 578 deletions

View File

@@ -114,11 +114,11 @@ class TestBytearrayStream(TestCase):
def test_read(self):
# TODO (peter-hamilton) Finish implementation.
self.skip('')
self.skipTest('')
def test_write(self):
# TODO (peter-hamilton) Finish implementation.
self.skip('')
self.skipTest('')
def test_peek(self):
# TODO (peter-hamilton) Finish implementation.
@@ -130,16 +130,16 @@ class TestBytearrayStream(TestCase):
def test_peek_overflow(self):
# TODO (peter-hamilton) Finish implementation.
self.skip('')
self.skipTest('')
def test_peek_empty(self):
# TODO (peter-hamilton) Finish implementation.
self.skip('')
self.skipTest('')
def test_peek_none(self):
# TODO (peter-hamilton) Finish implementation.
self.skip('')
self.skipTest('')
def test_length(self):
# TODO (peter-hamilton) Finish implementation.
self.skip('')
self.skipTest('')