# HG changeset patch # User KarstenBock@gmx.net # Date 1316614339 -7200 # Node ID 0a2cc748d16bce914d60a03ccac5f7c1ff49bcd8 # Parent 0ea341301461fbfc3d7c8a9ade885b5e894579bf Fixed container and lockable test. They where using the old name of the parpg grease module. diff -r 0ea341301461 -r 0a2cc748d16b tests/test_container.py --- a/tests/test_container.py Wed Sep 21 16:11:06 2011 +0200 +++ b/tests/test_container.py Wed Sep 21 16:12:19 2011 +0200 @@ -17,8 +17,8 @@ import unittest -from parpg.grease.world import BaseWorld -from parpg.grease.entity import Entity +from parpg.bGrease.world import BaseWorld +from parpg.bGrease.entity import Entity from parpg.components import containable, container class TestContainer(unittest.TestCase): diff -r 0ea341301461 -r 0a2cc748d16b tests/test_lockable.py --- a/tests/test_lockable.py Wed Sep 21 16:11:06 2011 +0200 +++ b/tests/test_lockable.py Wed Sep 21 16:12:19 2011 +0200 @@ -15,8 +15,8 @@ # You should have received a copy of the GNU General Public License # along with PARPG. If not, see . -from parpg.grease.world import BaseWorld -from parpg.grease.entity import Entity +from parpg.bGrease.world import BaseWorld +from parpg.bGrease.entity import Entity from parpg.components import lockable import unittest