Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2011-10-29 08:44:18 (GMT)
committer Simon Schampijer <simon@schampijer.de>2011-11-14 18:17:32 (GMT)
commit8f1a821d683193a1849ec9658b0a52408dfae304 (patch)
treefbb88c6948064bfa30c4379b4057ee1282a3fb29 /tests
parent000ed75cbee026535249d7db93d6ab20effa3d2a (diff)
Rename imports from sugar to sugar3
Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Sascha Silbe <silbe@activitycentral.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/graphics/common.py2
-rw-r--r--tests/graphics/hipposcalability.py4
-rw-r--r--tests/graphics/iconcache.py6
-rw-r--r--tests/graphics/iconwidget.py6
-rw-r--r--tests/graphics/ticket2855.py4
-rw-r--r--tests/graphics/ticket2999.py4
-rw-r--r--tests/graphics/ticket3000.py2
-rw-r--r--tests/graphics/toolbarpalettes.py4
-rw-r--r--tests/graphics/tray.py6
9 files changed, 19 insertions, 19 deletions
diff --git a/tests/graphics/common.py b/tests/graphics/common.py
index 8085261..103a81d 100644
--- a/tests/graphics/common.py
+++ b/tests/graphics/common.py
@@ -17,7 +17,7 @@
import gtk
-from sugar.graphics.toolbutton import ToolButton
+from sugar3.graphics.toolbutton import ToolButton
class Test(gtk.VBox):
diff --git a/tests/graphics/hipposcalability.py b/tests/graphics/hipposcalability.py
index efea57e..df57101 100644
--- a/tests/graphics/hipposcalability.py
+++ b/tests/graphics/hipposcalability.py
@@ -2,8 +2,8 @@ import hippo
import gtk
import gobject
-from sugar.graphics.icon import CanvasIcon
-from sugar.graphics.roundbox import CanvasRoundBox
+from sugar3.graphics.icon import CanvasIcon
+from sugar3.graphics.roundbox import CanvasRoundBox
import common
diff --git a/tests/graphics/iconcache.py b/tests/graphics/iconcache.py
index b3a8443..9508f6b 100644
--- a/tests/graphics/iconcache.py
+++ b/tests/graphics/iconcache.py
@@ -16,13 +16,13 @@
# Boston, MA 02111-1307, USA.
"""
-Test the sugar.graphics.icon.* cache.
+Test the sugar3.graphics.icon.* cache.
"""
import gtk
-from sugar.graphics.icon import Icon
-from sugar.graphics.xocolor import XoColor
+from sugar3.graphics.icon import Icon
+from sugar3.graphics.xocolor import XoColor
import common
diff --git a/tests/graphics/iconwidget.py b/tests/graphics/iconwidget.py
index a425c17..d4626ff 100644
--- a/tests/graphics/iconwidget.py
+++ b/tests/graphics/iconwidget.py
@@ -16,13 +16,13 @@
# Boston, MA 02111-1307, USA.
"""
-Test the sugar.graphics.icon.Icon widget.
+Test the sugar3.graphics.icon.Icon widget.
"""
import gtk
-from sugar.graphics.icon import Icon
-from sugar.graphics.xocolor import XoColor
+from sugar3.graphics.icon import Icon
+from sugar3.graphics.xocolor import XoColor
import common
diff --git a/tests/graphics/ticket2855.py b/tests/graphics/ticket2855.py
index 4d9d9d4..96c4a66 100644
--- a/tests/graphics/ticket2855.py
+++ b/tests/graphics/ticket2855.py
@@ -23,8 +23,8 @@ controls. Ticket #2855.
import gtk
-from sugar.graphics.palette import Palette
-from sugar.graphics.icon import Icon
+from sugar3.graphics.palette import Palette
+from sugar3.graphics.icon import Icon
import common
diff --git a/tests/graphics/ticket2999.py b/tests/graphics/ticket2999.py
index caf7adf..5ebae31 100644
--- a/tests/graphics/ticket2999.py
+++ b/tests/graphics/ticket2999.py
@@ -21,8 +21,8 @@ Spec in ticket #2999.
import gtk
-from sugar.graphics.palette import Palette
-from sugar.graphics.icon import Icon
+from sugar3.graphics.palette import Palette
+from sugar3.graphics.icon import Icon
import common
diff --git a/tests/graphics/ticket3000.py b/tests/graphics/ticket3000.py
index f2fdfd9..afecb4a 100644
--- a/tests/graphics/ticket3000.py
+++ b/tests/graphics/ticket3000.py
@@ -21,7 +21,7 @@ Spec in ticket #3000.
import gtk
-from sugar.graphics.toolbutton import ToolButton
+from sugar3.graphics.toolbutton import ToolButton
import common
diff --git a/tests/graphics/toolbarpalettes.py b/tests/graphics/toolbarpalettes.py
index 3a69455..1fd079a 100644
--- a/tests/graphics/toolbarpalettes.py
+++ b/tests/graphics/toolbarpalettes.py
@@ -21,8 +21,8 @@ Test palette positioning for toolbar and tray.
import gtk
-from sugar.graphics.tray import HTray, TrayButton
-from sugar.graphics.toolbutton import ToolButton
+from sugar3.graphics.tray import HTray, TrayButton
+from sugar3.graphics.toolbutton import ToolButton
import common
diff --git a/tests/graphics/tray.py b/tests/graphics/tray.py
index 99d4891..9b2d15a 100644
--- a/tests/graphics/tray.py
+++ b/tests/graphics/tray.py
@@ -16,13 +16,13 @@
# Boston, MA 02111-1307, USA.
"""
-Test the sugar.graphics.icon.Icon widget.
+Test the sugar3.graphics.icon.Icon widget.
"""
import gtk
-from sugar.graphics.tray import HTray, VTray
-from sugar.graphics.tray import TrayButton, TrayIcon
+from sugar3.graphics.tray import HTray, VTray
+from sugar3.graphics.tray import TrayButton, TrayIcon
import common