Skip to content

Commit 3f1bd4f

Browse files
committed
Fix tests
1 parent ad8ae4e commit 3f1bd4f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

spec/Laracasts/Commander/Console/CommandInputParserSpec.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace spec\Acme\Console;
1+
<?php namespace spec\Laracasts\Commander\Console;
22

33
use PhpSpec\ObjectBehavior;
44
use Prophecy\Argument;
@@ -7,13 +7,13 @@ class CommandInputParserSpec extends ObjectBehavior {
77

88
function it_is_initializable()
99
{
10-
$this->shouldHaveType('Acme\Console\CommandInputParser');
10+
$this->shouldHaveType('Laracasts\Commander\Console\CommandInputParser');
1111
}
1212

1313
function it_returns_an_instance_of_command_input()
1414
{
1515
$this->parse('Foo/Bar/MyCommand', 'username, email')
16-
->shouldBeAnInstanceOf('Acme\Console\CommandInput');
16+
->shouldBeAnInstanceOf('Laracasts\Commander\Console\CommandInput');
1717
}
1818

1919
function it_parses_the_name_of_the_class()

0 commit comments

Comments
 (0)