Skip to content

Commit

Permalink
Update ConnectionTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ziaratban committed Oct 11, 2020
1 parent fda59d8 commit 6c0ef36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ConnectionTest extends TestCase
{
public function testConstruct()
{
$connection = $this->getConnection(false);
$connection = $this->getConnection(true,false);
$params = $this->mongoDbConfig;

$connection->open();
Expand All @@ -26,7 +26,7 @@ public function testConstruct()

public function testOpenClose()
{
$connection = $this->getConnection(false, false);
$connection = $this->getConnection(true, false);

$this->assertFalse($connection->isActive);
$this->assertEquals(null, $connection->manager);
Expand Down

0 comments on commit 6c0ef36

Please sign in to comment.