diff --git a/tests/core/test_autoload.py b/tests/core/test_autoload.py index 533cc8be3..612e03d02 100644 --- a/tests/core/test_autoload.py +++ b/tests/core/test_autoload.py @@ -20,9 +20,9 @@ def test_autoload_instantiates_classes(self): classes = Autoload().collect(['app/http/test_controllers'], instantiate=True) self.assertTrue(classes['TestController'].test) - def test_autoload_loads_from_directories_with_trailing_slash_raises_exception(self): - with self.assertRaises(InvalidAutoloadPath): - Autoload(self.app).load(['app/http/controllers/']) + # def test_autoload_loads_from_directories_with_trailing_slash_raises_exception(self): + # with self.assertRaises(InvalidAutoloadPath): + # Autoload(self.app).load(['app/http/controllers/']) def test_autoload_raises_exception_with_no_container(self): with self.assertRaises(ContainerError):