Skip to content

Commit

Permalink
Try to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander-Toonen committed Jun 17, 2016
1 parent d968a4c commit b9495ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MongoDbServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function testConnection()
$document = ['foo' => 'bar'];
$result = $collection->insertOne($document);
$this->assertInstanceOf('\MongoDB\InsertOneResult', $result);
$this->assertArrayHasKey('_id', $document);
$this->assertSame(1, $result->getInsertedCount());
$database->dropCollection('test');
}
}

0 comments on commit b9495ad

Please sign in to comment.