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
This commit is contained in:
Tim Burke 2023-04-13 10:16:11 -07:00
parent 984cca9263
commit 12bfcb5cd6

View File

@ -12,10 +12,9 @@
# implied. # implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from queue import PriorityQueue
import eventlet import eventlet
import six.moves.cPickle as pickle import six.moves.cPickle as pickle
from six.moves.queue import PriorityQueue
import mock import mock
import os import os
import unittest import unittest