Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Jan 17, 2022
1 parent 72bf22a commit 917ae53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 79 deletions.
3 changes: 2 additions & 1 deletion tests/cases/Unit/Connections/ConnectionTest.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ final class ConnectionTest extends BaseMockeryTestCase

public function testDefaultValues(): void
{
$config = new Connections\Connection('127.0.0.1', 1234, null, null);
$config = new Connections\Connection('identifier', '127.0.0.1', 1234, null, null);

Assert::same('identifier', $config->getIdentifier());
Assert::same('127.0.0.1', $config->getHost());
Assert::same(1234, $config->getPort());
Assert::null($config->getUsername());
Expand Down
78 changes: 0 additions & 78 deletions tests/cases/Unit/Publisher/AsyncPublisherTest.phpt

This file was deleted.

0 comments on commit 917ae53

Please sign in to comment.