Skip to content

Commit 442c409

Browse files
committed
Fix test names
1 parent 61fe8f1 commit 442c409

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Unit/Connection/Responses/MessageResponseParserTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use DirectoryTree\ImapEngine\Connection\Responses\TaggedResponse;
66
use DirectoryTree\ImapEngine\Connection\Tokens\Atom;
77

8-
it('parses UID from tagged COPYUID response', function () {
8+
test('it parses UID from tagged COPYUID response', function () {
99
$response = new TaggedResponse([
1010
new Atom('TAG1'), // Tag
1111
new Atom('OK'), // Status
@@ -23,7 +23,7 @@
2323
expect($parsedUid)->toBe(5678);
2424
});
2525

26-
it('returns null for non-COPYUID tagged response', function () {
26+
test('it returns null for non-COPYUID tagged response', function () {
2727
$response = new TaggedResponse([
2828
new Atom('TAG1'),
2929
new Atom('OK'),

0 commit comments

Comments
 (0)