We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61fe8f1 commit 442c409Copy full SHA for 442c409
tests/Unit/Connection/Responses/MessageResponseParserTest.php
@@ -5,7 +5,7 @@
5
use DirectoryTree\ImapEngine\Connection\Responses\TaggedResponse;
6
use DirectoryTree\ImapEngine\Connection\Tokens\Atom;
7
8
-it('parses UID from tagged COPYUID response', function () {
+test('it parses UID from tagged COPYUID response', function () {
9
$response = new TaggedResponse([
10
new Atom('TAG1'), // Tag
11
new Atom('OK'), // Status
@@ -23,7 +23,7 @@
23
expect($parsedUid)->toBe(5678);
24
});
25
26
-it('returns null for non-COPYUID tagged response', function () {
+test('it returns null for non-COPYUID tagged response', function () {
27
28
new Atom('TAG1'),
29
new Atom('OK'),
0 commit comments