Skip to content

Commit 2123f4c

Browse files
committed
Tweak README.md
1 parent 78eaaba commit 2123f4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ composer require --dev tarantool/phpunit-extras
2929

3030
Besides the annotations provided by the package `rybakit/phpunit-extras`, the library is shipped
3131
with add-ons specific to Tarantool. The easiest way to enable them is by inheriting your test classes
32-
from the `Tarantool\PhpUnit\TestCase` class:
32+
from `Tarantool\PhpUnit\TestCase`:
3333

3434
```php
3535
use Tarantool\Client\Client;
@@ -185,7 +185,7 @@ To test that your code sends (or does not send) certain requests, the following
185185
* `TestCase::expectNoRequestToBeCalled() : void`
186186

187187
where `<REQUEST_NAME>` is the name of the request, for example `Call`, `Insert`, etc.
188-
These methods are part of the `Tarantool\PhpUnit\TestCase` class, but can also be enabled through a trait:
188+
These methods are part of the `Tarantool\PhpUnit\TestCase` class, but they can also be enabled through a trait:
189189

190190
```php
191191
use PHPUnit\Framework\TestCase;
@@ -215,7 +215,7 @@ public function testGetSpaceIsCached() : void
215215

216216
## Mocking
217217

218-
This library provides several helper classes to create test doubles for the [Tarantool Сlient](https://github.com/tarantool-php/client)
218+
The library provides several helper classes to create test doubles for the [Tarantool Сlient](https://github.com/tarantool-php/client)
219219
to avoid sending real requests to the Tarantool server. For the convenience of creating such objects,
220220
add the trait `ClientMocking` to your test class:
221221

0 commit comments

Comments
 (0)