Skip to content

Commit df65f39

Browse files
committed
Fixed phpunit tests
1 parent 1bfea3c commit df65f39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Services/InfoProviderSystem/Providers/LCSCProviderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ public function testCategoryBuilding(): void
479479
'productIntroEn' => 'Test description',
480480
'brandNameEn' => 'Test Manufacturer',
481481
'parentCatalogName' => 'Electronic Components',
482-
'catalogName' => 'Resistors/SMT',
482+
'catalogName' => 'Resistors (SMT)',
483483
'encapStandard' => '0603',
484484
'productImageUrl' => null,
485485
'productImages' => [],
@@ -493,7 +493,7 @@ public function testCategoryBuilding(): void
493493
$this->httpClient->setResponseFactory([$mockResponse]);
494494

495495
$result = $this->provider->getDetails('C123456');
496-
$this->assertEquals('Electronic Components -> Resistors -> SMT', $result->category);
496+
$this->assertEquals('Electronic Components -> Resistors (SMT)', $result->category);
497497
}
498498

499499
public function testEmptyFootprintHandling(): void

0 commit comments

Comments
 (0)