summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-04-22 14:29:39 +0000
committerGerrit Code Review <review@openstack.org>2013-04-22 14:29:39 +0000
commitc2576b960450ae118a2c261df4ce813ff58f8868 (patch)
tree730a8137cd38fb1db1219ba3d92ea403d75671b1 /tests
parent2492387789ece466e19ee1a76ce5f574bfc123e6 (diff)
parent07d23bf74b4279b313d8ea03ca9c15b330bdbf0b (diff)
downloadoslo-c2576b960450ae118a2c261df4ce813ff58f8868.tar.gz
oslo-c2576b960450ae118a2c261df4ce813ff58f8868.tar.xz
oslo-c2576b960450ae118a2c261df4ce813ff58f8868.zip
Merge "Use print_function __future__ import"
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_processutils.py2
-rw-r--r--tests/unit/test_service.py3
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit/test_processutils.py b/tests/unit/test_processutils.py
index f096cf7..a85ed48 100644
--- a/tests/unit/test_processutils.py
+++ b/tests/unit/test_processutils.py
@@ -15,6 +15,8 @@
# License for the specific language governing permissions and limitations
# under the License.
+from __future__ import print_function
+
from openstack.common import processutils
from tests import utils
diff --git a/tests/unit/test_service.py b/tests/unit/test_service.py
index 53b7eb4..77cf7ff 100644
--- a/tests/unit/test_service.py
+++ b/tests/unit/test_service.py
@@ -19,6 +19,9 @@
"""
Unit Tests for remote procedure calls using queue
"""
+
+from __future__ import print_function
+
import os
import signal
import time