aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/str_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/samplebinding/str_test.py')
-rw-r--r--tests/samplebinding/str_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/samplebinding/str_test.py b/tests/samplebinding/str_test.py
index d8d3a75ca..8fe112626 100644
--- a/tests/samplebinding/str_test.py
+++ b/tests/samplebinding/str_test.py
@@ -66,7 +66,7 @@ class StrTest(unittest.TestCase):
self.assertEqual(s1[-2], "e");
try:
- print s1[6]
+ print(s1[6])
self.assertFalse(true);
except:
pass