Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Szu committed Dec 28, 2023
1 parent 7fc1528 commit 0a8a240
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions tests/VObject/VCardConverterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -608,36 +608,6 @@ public function testPhoneNumberValueTypeGetsRemoved(): void
$vcard = Reader::read($input);
$vcard = $vcard->convert(Document::VCARD40);

self::assertVObjectEqualsVObject(
$output,
$vcard
);
}

public function testPhoneNumberValueTypeGetsRemoved(): void
{
$input = <<<VCF
BEGIN:VCARD
VERSION:3.0
UID:foo
FN:John Doe
TEL;TYPE=HOME;VALUE=PHONE-NUMBER:+1234
END:VCARD
VCF;

$output = <<<VCF
BEGIN:VCARD
VERSION:4.0
UID:foo
FN:John Doe
TEL;TYPE=HOME:+1234
END:VCARD
VCF;

$vcard = Reader::read($input);
$vcard = $vcard->convert(Document::VCARD40);

$this->assertVObjectEqualsVObject(
$output,
$vcard
Expand Down

0 comments on commit 0a8a240

Please sign in to comment.