From 37241db646bf57a120b655d818964cbc3f3fb9a0 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 13 Jul 2012 03:07:14 +0200 Subject: [PATCH] Fix View test case still referring to the old bundle setup for tests. --- laravel/tests/cases/view.test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/tests/cases/view.test.php b/laravel/tests/cases/view.test.php index d10cf31c..9716724a 100644 --- a/laravel/tests/cases/view.test.php +++ b/laravel/tests/cases/view.test.php @@ -55,10 +55,10 @@ public function testViewIsCreatedWithCorrectPath() */ public function testBundleViewIsCreatedWithCorrectPath() { - $view = new View('laravel-tests::home.index'); + $view = new View('home.index'); $this->assertEquals( - str_replace(DS, '/', Bundle::path('laravel-tests')).'views/home/index.php', + str_replace(DS, '/', Bundle::path(DEFAULT_BUNDLE)).'views/home/index.php', str_replace(DS, '/', $view->path) ); }