Skip to content

Commit 5ab2ea6

Browse files
committed
Improve docs
1 parent f5a47f2 commit 5ab2ea6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AsyncTestCase.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
use function Amp\call;
99

1010
/**
11-
* A PHPUnit TestCase intended to help facilitate writing async tests by running each test on the amphp Loop and
12-
* ensuring that the test runs until completion based on your test returning either a Promise or a Generator.
11+
* A PHPUnit TestCase intended to help facilitate writing async tests by running each test as coroutine with Amp's
12+
* event loop ensuring that the test runs until completion based on your test returning either a Promise or Generator.
1313
*/
1414
abstract class AsyncTestCase extends PHPUnitTestCase
1515
{
16-
use Internal\AsyncTestSetNameTrait,
17-
Internal\AsyncTestSetUpTrait;
16+
use Internal\AsyncTestSetNameTrait;
17+
use Internal\AsyncTestSetUpTrait;
1818

1919
const RUNTIME_PRECISION = 2;
2020

0 commit comments

Comments
 (0)