Skip to content

Commit

Permalink
[TEST] Correct Tests
Browse files Browse the repository at this point in the history
Hashes changed, because more field are used to generate id
  • Loading branch information
dhoffmann1979 committed Nov 4, 2024
1 parent a1ea7a6 commit 131d7d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function testJoinDemandResolverResolvesMmRelation(): void
$sysCategoryParents = $sysCategoryRecord->getParents();
self::assertCount(1, $sysCategoryParents);
$sysCategoryMmRecord = reset($sysCategoryParents);
self::assertSame('7f64dfb449435fd9951d63ff8885d639b2cbe3bf', $sysCategoryMmRecord->getId());
self::assertSame('1e829e4ee2bd6fa3a73ee64c6461313b08939ee7', $sysCategoryMmRecord->getId());
$mmParents = $sysCategoryMmRecord->getParents();
self::assertCount(1, $mmParents);
$mmParent = reset($mmParents);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function testFindByPropertyWithJoinReturnsJoinedRows(): void
[170, 180],
);
self::assertSame([
'7f64dfb449435fd9951d63ff8885d639b2cbe3bf' => [
'1e829e4ee2bd6fa3a73ee64c6461313b08939ee7' => [
'mmtbl' => [
'uid_local' => 1,
'uid_foreign' => 170,
Expand Down Expand Up @@ -91,7 +91,7 @@ public function testFindByPropertyWithJoinReturnsJoinedRows(): void
'slug' => "styleguide-demo-category",
],
],
'1a96d1af72a6c1f3208d78a4f66a4e9b9bcf4198' => [
'427137b54c066f401f490c1af0aea53e5ed70536' => [
'mmtbl' => [
'uid_local' => 1,
'uid_foreign' => 180,
Expand Down

0 comments on commit 131d7d5

Please sign in to comment.