Skip to content

Commit b5b68df

Browse files
committed
Fix Tests for Python 3.2
1 parent 56a06e5 commit b5b68df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4+
from __future__ import unicode_literals
5+
46
import doctest
57
import unittest
68
import sys
@@ -61,7 +63,7 @@ def test_round_trip(self):
6163
"/k\"l",
6264
"/ ",
6365
"/m~0n",
64-
u'/\xee',
66+
'/\xee',
6567
]
6668
for path in paths:
6769
ptr = JsonPointer(path)

0 commit comments

Comments
 (0)