Skip to content

Commit 6adff43

Browse files
committed
ITT: Formatted.
1 parent a4924f6 commit 6adff43

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/Asserts/ServiceProviderAssertsTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@ protected function getPackageProviders($app)
1212
}
1313

1414
/** @test */
15-
public function it_has_command_registered_assertion()
15+
public function it_has_alias_registered_assertion()
1616
{
17-
$this->assertCommandRegistered('generic');
17+
$this->assertAliasRegistered('Fixture\Alias\Post');
1818
}
1919

2020
/** @test */
21-
public function it_has_command_not_registered_assertion()
21+
public function it_has_alias_not_registered_assertion()
2222
{
23-
$this->assertCommandNotRegistered('unexisting');
23+
$this->assertAliasNotRegistered('Fixture\Alias\Unexisting');
2424
}
2525

2626
/** @test */
27-
public function it_has_alias_registered_assertion()
27+
public function it_has_command_registered_assertion()
2828
{
29-
$this->assertAliasRegistered('Fixture\Alias\Post');
29+
$this->assertCommandRegistered('generic');
3030
}
3131

3232
/** @test */
33-
public function it_has_alias_not_registered_assertion()
33+
public function it_has_command_not_registered_assertion()
3434
{
35-
$this->assertAliasNotRegistered('Fixture\Alias\Unexisting');
35+
$this->assertCommandNotRegistered('unexisting');
3636
}
3737
}

0 commit comments

Comments
 (0)