summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2023-04-13 10:16:11 -0700
committerTim Burke <tim.burke@gmail.com>2023-04-13 10:16:17 -0700
commit12bfcb5cd602eaef6c090e47172edb02a196e538 (patch)
tree1583a5b30ec9c1decb15f20847417bf85ae94d5d /test
parent984cca9263c1589e1f4858ee1b0ba5d2ac1bf702 (diff)
downloadswift-12bfcb5cd602eaef6c090e47172edb02a196e538.tar.gz
tests: Fix PriorityQueue import
Not sure how we didn't catch this before; py2 gate jobs still seem to run these tests and they'd pass?? Change-Id: I24a5680d19af609b92588249610e4a1f128bdad3
Diffstat (limited to 'test')
-rw-r--r--test/unit/obj/test_updater.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/unit/obj/test_updater.py b/test/unit/obj/test_updater.py
index 941ec3dc3..1629e0ac2 100644
--- a/test/unit/obj/test_updater.py
+++ b/test/unit/obj/test_updater.py
@@ -12,10 +12,9 @@
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-from queue import PriorityQueue
-
import eventlet
import six.moves.cPickle as pickle
+from six.moves.queue import PriorityQueue
import mock
import os
import unittest