Fix digitalocean plugin tests for Python 3 (#4821)

assertItemsEqual() doesn't exist in Python 3.x. Travis didn't fail because of some nose errors (so not all tests were run).
This commit is contained in:
Felix Yan
2017-06-12 07:41:35 -07:00
committed by Brad Warren
parent 498f8ad75c
commit 6d74a0d3ce
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -15,6 +15,7 @@ install_requires = [
# For pkg_resources. >=1.0 so pip resolves it to a version cryptography
# will tolerate; see #2599:
'setuptools>=1.0',
'six',
'zope.interface',
]