From a0f875025475c50831f81652606770f1e7c6afa0 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Wed, 10 Dec 2014 10:46:02 -0500 Subject: [PATCH] Update query test file --- tests/QueryBuilderTests.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/QueryBuilderTests.php b/tests/QueryBuilderTests.php index a5fc141..49846a3 100644 --- a/tests/QueryBuilderTests.php +++ b/tests/QueryBuilderTests.php @@ -71,7 +71,7 @@ public function testGetOptions() $this->assertEquals(array( 'w' => 0, 'fsync' => false, - 'timeout' => MongoCursor::$timeout, + 'connectTimeoutMS' => MongoCursor::$timeout, ), $result); $result = $this->builder->timeout(100)->getOptions(); @@ -79,7 +79,7 @@ public function testGetOptions() $this->assertEquals(array( 'w' => 0, 'fsync' => false, - 'timeout' => 100, + 'connectTimeoutMS' => 100, ), $result); } }