From b17c7a41d16fc23f9e2b8bfb637dd0f1e620fe17 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 9 Jan 2014 23:27:36 +0100 Subject: [PATCH] Attempt hhvm build fix --- tests/Monolog/Handler/DynamoDbHandlerTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Monolog/Handler/DynamoDbHandlerTest.php b/tests/Monolog/Handler/DynamoDbHandlerTest.php index 21f0f16c..a38a8cb7 100644 --- a/tests/Monolog/Handler/DynamoDbHandlerTest.php +++ b/tests/Monolog/Handler/DynamoDbHandlerTest.php @@ -21,7 +21,9 @@ class DynamoDbHandlerTest extends TestCase $this->markTestSkipped('aws/aws-sdk-php not installed'); } - $this->client = $this->getMockBuilder('Aws\DynamoDb\DynamoDbClient')->disableOriginalConstructor()->getMock(); + $this->client = $this->getMockBuilder('Aws\DynamoDb\DynamoDbClient') + ->setMethods(array('formatAttributes', '__call')) + ->disableOriginalConstructor()->getMock(); } public function testConstruct()