@@ -31,7 +31,7 @@ |
||
| 31 | 31 | MessageInterface $message, |
| 32 | 32 | QueryInterface $query, |
| 33 | 33 | int $n |
| 34 | - ) { |
|
| 34 | + ){ |
|
| 35 | 35 | parent::__construct($rethink, $message); |
| 36 | 36 | |
| 37 | 37 | $this->query = $query; |
@@ -43,10 +43,10 @@ |
||
| 43 | 43 | |
| 44 | 44 | /** @var Cursor $cursor */ |
| 45 | 45 | $cursor = $this->r() |
| 46 | - ->table('tabletest') |
|
| 47 | - ->filter(['description' => 'A document description.']) |
|
| 48 | - ->limit(2) |
|
| 49 | - ->run(); |
|
| 46 | + ->table('tabletest') |
|
| 47 | + ->filter(['description' => 'A document description.']) |
|
| 48 | + ->limit(2) |
|
| 49 | + ->run(); |
|
| 50 | 50 | |
| 51 | 51 | $this->assertCount(2, $cursor); |
| 52 | 52 | } |