Skip to content

Commit

Permalink
fix issue caused by the removal of launcher.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sampot committed Nov 3, 2015
1 parent 1823a41 commit 96cb0b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/test_runtime.py
Expand Up @@ -9,8 +9,8 @@
class TestRuntimeConfig(unittest.TestCase):

def setUp(self):
from ava import launcher
launcher.init_app_dir()
from ava import wrapper
wrapper.init_app_dir()

def test_should_have_dir_settings(self):
from ava.runtime.config import settings
Expand All @@ -30,8 +30,8 @@ def test_should_have_logging_settings(self):
class TestRuntimeEnviron(unittest.TestCase):

def setUp(self):
from ava import launcher
launcher.init_app_dir()
from ava import wrapper
wrapper.init_app_dir()

def test_work_home(self):
env = environ.Environment()
Expand Down

0 comments on commit 96cb0b0

Please sign in to comment.