summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2015-05-11 13:34:47 -0700
committerAmjith Ramanujam <amjith.r@gmail.com>2015-05-11 13:34:47 -0700
commit0c9c51b4f770f072f33e07695615d2e52cd796c0 (patch)
tree4af3f5b561adaaf88d856f9ac0f88db455ca4296
parent5f8126c1799974f0bebad9390c025329c2343b36 (diff)
Fix failing tests in Python 2.
-rw-r--r--tests/test_naive_completion.py1
-rw-r--r--tests/test_smart_completion_multiple_schemata.py1
-rw-r--r--tests/test_smart_completion_public_schema_only.py1
3 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_naive_completion.py b/tests/test_naive_completion.py
index 12710336..0dd3d5d8 100644
--- a/tests/test_naive_completion.py
+++ b/tests/test_naive_completion.py
@@ -1,3 +1,4 @@
+from __future__ import unicode_literals
import pytest
from prompt_toolkit.completion import Completion
from prompt_toolkit.document import Document
diff --git a/tests/test_smart_completion_multiple_schemata.py b/tests/test_smart_completion_multiple_schemata.py
index 773d89ca..658a9eee 100644
--- a/tests/test_smart_completion_multiple_schemata.py
+++ b/tests/test_smart_completion_multiple_schemata.py
@@ -1,3 +1,4 @@
+from __future__ import unicode_literals
import pytest
from prompt_toolkit.completion import Completion
from prompt_toolkit.document import Document
diff --git a/tests/test_smart_completion_public_schema_only.py b/tests/test_smart_completion_public_schema_only.py
index 346160cf..e1731b77 100644
--- a/tests/test_smart_completion_public_schema_only.py
+++ b/tests/test_smart_completion_public_schema_only.py
@@ -1,3 +1,4 @@
+from __future__ import unicode_literals
import pytest
from prompt_toolkit.completion import Completion
from prompt_toolkit.document import Document