Merge branch '9964-output-glob-acr' refs #9964
[arvados.git] / sdk / python / tests / test_http.py
index bce57eda61b7be549af205525bb0c81eba9e035d..476e2c88e9bb5abc71c52ca33cf3f783e0a51c90 100644 (file)
@@ -2,20 +2,18 @@
 #
 # SPDX-License-Identifier: Apache-2.0
 
-from future import standard_library
-standard_library.install_aliases()
-
 import copy
 import io
 import functools
 import hashlib
 import json
 import logging
-import mock
 import sys
 import unittest
 import datetime
 
+from unittest import mock
+
 import arvados
 import arvados.collection
 import arvados.keep
@@ -23,8 +21,6 @@ import pycurl
 
 from arvados.http_to_keep import http_to_keep
 
-import ruamel.yaml as yaml
-
 # Turns out there was already "FakeCurl" that serves the same purpose, but
 # I wrote this before I knew that.  Whoops.
 class CurlMock: