aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Brooks <dave@bcs.co.nz>2015-12-05 13:18:54 +1300
committerDavid Brooks <dave@bcs.co.nz>2015-12-05 13:18:54 +1300
commitd4bec08abac4f54a89919081443daa3cc0ed99d8 (patch)
tree40f1a4607349048cd1cb411d67fd9770a0d84a8d /tests
parentfc7e44469a6252c59a1919842a553c0c30d2ad87 (diff)
The shiboken module is called `shiboken2` but the typesystem and tests refer to it as `shiboken`.
Diffstat (limited to 'tests')
-rw-r--r--tests/otherbinding/objtypehashes_test.py2
-rw-r--r--tests/samplebinding/delete_test.py2
-rw-r--r--tests/samplebinding/objecttype_test.py2
-rw-r--r--tests/samplebinding/privatedtor_test.py2
-rw-r--r--tests/shibokenmodule/module_test.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/otherbinding/objtypehashes_test.py b/tests/otherbinding/objtypehashes_test.py
index 24f3b1e87..a73dff333 100644
--- a/tests/otherbinding/objtypehashes_test.py
+++ b/tests/otherbinding/objtypehashes_test.py
@@ -1,7 +1,7 @@
import unittest
from sample import *
from other import *
-import shiboken
+import shiboken2 as shiboken
class TestHashFuncs (unittest.TestCase):
diff --git a/tests/samplebinding/delete_test.py b/tests/samplebinding/delete_test.py
index 4448025f3..04293f116 100644
--- a/tests/samplebinding/delete_test.py
+++ b/tests/samplebinding/delete_test.py
@@ -26,7 +26,7 @@
import unittest
import sample
-import shiboken
+import shiboken2 as shiboken
class DeleteTest(unittest.TestCase):
def testNonCppWrapperClassDelete(self):
diff --git a/tests/samplebinding/objecttype_test.py b/tests/samplebinding/objecttype_test.py
index 814e25839..6794cb51a 100644
--- a/tests/samplebinding/objecttype_test.py
+++ b/tests/samplebinding/objecttype_test.py
@@ -30,7 +30,7 @@ import unittest
import sys
from sample import ObjectType, Str
-import shiboken
+import shiboken2 as shiboken
class ObjectTypeTest(unittest.TestCase):
diff --git a/tests/samplebinding/privatedtor_test.py b/tests/samplebinding/privatedtor_test.py
index 795e526c3..58631fe24 100644
--- a/tests/samplebinding/privatedtor_test.py
+++ b/tests/samplebinding/privatedtor_test.py
@@ -30,7 +30,7 @@ import gc
import sys
import unittest
-import shiboken
+import shiboken2 as shiboken
from sample import PrivateDtor
diff --git a/tests/shibokenmodule/module_test.py b/tests/shibokenmodule/module_test.py
index 54c47de14..64a3662b5 100644
--- a/tests/shibokenmodule/module_test.py
+++ b/tests/shibokenmodule/module_test.py
@@ -1,4 +1,4 @@
-import shiboken
+import shiboken2 as shiboken
import unittest
from sample import *