Commit 37241db6 authored by Franz Liedke's avatar Franz Liedke

Fix View test case still referring to the old bundle setup for tests.

parent 7351845e
......@@ -55,10 +55,10 @@ class ViewTest extends PHPUnit_Framework_TestCase {
*/
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)
);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment