Skip to content

Commit

Permalink
make phpstan happy
Browse files Browse the repository at this point in the history
  • Loading branch information
irevoire committed Jul 31, 2024
1 parent a73c027 commit 5e122f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Settings/LocalizedAttributesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public function testGetDefaultLocalizedAttributes(): void
$attributesA = $indexA->getLocalizedAttributes();
$attributesB = $indexB->getLocalizedAttributes();

self::assertSame(null, $attributesA);
self::assertSame(null, $attributesB);
self::assertNull($attributesA);
self::assertNull($attributesB);
}

public function testUpdateLocalizedAttributes(): void
Expand Down Expand Up @@ -50,6 +50,6 @@ public function testResetLocalizedAttributes(): void
$index->waitForTask($promise['taskUid']);

$localizedAttributes = $index->getLocalizedAttributes();
self::assertSame(null, $localizedAttributes);
self::assertNull($localizedAttributes);
}
}

0 comments on commit 5e122f5

Please sign in to comment.