Mercurial > parpg-core
changeset 94:0a2cc748d16b
Fixed container and lockable test. They where using the old name of the parpg grease module.
author | KarstenBock@gmx.net |
---|---|
date | Wed, 21 Sep 2011 16:12:19 +0200 |
parents | 0ea341301461 |
children | 18b641968285 |
files | tests/test_container.py tests/test_lockable.py |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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):
--- 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 <http://www.gnu.org/licenses/>. -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