Skip to content

Commit

Permalink
Adapt test path to lowercase for v4
Browse files Browse the repository at this point in the history
  • Loading branch information
mstilkerich committed Dec 27, 2022
1 parent 5ef7e01 commit a55fa82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/DataConversionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ public function testPhotoloaderHandlesUnauthenticatedUsageError(): void
$logger = TestInfrastructure::logger();
unset($_SESSION['user_id']);

$vcard = TestInfrastructure::readVCard("tests/Unit/data/vcardImport/UriPhoto.vcf");
$vcard = TestInfrastructure::readVCard("tests/unit/data/vcardImport/UriPhoto.vcf");
$this->assertNotNull($vcard->PHOTO);
$proxy = new DelayedPhotoLoader($vcard, $this->abook);

Expand All @@ -521,7 +521,7 @@ public function testPhotoloaderHandlesUnknownUriScheme(): void
{
$logger = TestInfrastructure::logger();

$vcard = TestInfrastructure::readVCard("tests/Unit/data/vcardImport/UriPhoto.vcf");
$vcard = TestInfrastructure::readVCard("tests/unit/data/vcardImport/UriPhoto.vcf");
$this->assertNotNull($vcard->PHOTO);
$vcard->PHOTO->setValue('ftp://localhost/raven.jpg');
$proxy = new DelayedPhotoLoader($vcard, $this->abook);
Expand Down

0 comments on commit a55fa82

Please sign in to comment.