Skip to content

Commit

Permalink
changed app name in load_app
Browse files Browse the repository at this point in the history
  • Loading branch information
aweakley committed Jun 17, 2010
1 parent 55f4a0f commit 27b51e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions treemenus/tests/__init__.py
Expand Up @@ -16,7 +16,7 @@ def setUp(self):
# Install testapp
self.old_INSTALLED_APPS = settings.INSTALLED_APPS
settings.INSTALLED_APPS += ['treemenus.tests.fake_menu_extension']
load_app('fake_menu_extension')
load_app('treemenus.tests.fake_menu_extension')
call_command('flush', verbosity=0, interactive=False)
call_command('syncdb', verbosity=0, interactive=False)

Expand Down Expand Up @@ -627,4 +627,4 @@ def test_move_item_or_clean_ranks(self):
def test_menu_create(self):
# Regression test for issue #18
# http://code.google.com/p/django-treemenus/issues/detail?id=18
menu = Menu.objects.create(name="menu_created_with_force_insert_True")
menu = Menu.objects.create(name="menu_created_with_force_insert_True")

0 comments on commit 27b51e9

Please sign in to comment.