From ba856f2925e16a99de5be9696e510c4081f4602c Mon Sep 17 00:00:00 2001 From: Owen Bush <31222-owenbush@users.noreply.drupalcode.org> Date: Thu, 20 Jun 2024 20:38:56 +0000 Subject: [PATCH] Issue #3452641 by owenbush: Failing tests on main branch --- .../Unit/Plugin/migrate/destination/EntityEventSeriesTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/src/Unit/Plugin/migrate/destination/EntityEventSeriesTest.php b/tests/src/Unit/Plugin/migrate/destination/EntityEventSeriesTest.php index 98b29872..23e0c0e0 100644 --- a/tests/src/Unit/Plugin/migrate/destination/EntityEventSeriesTest.php +++ b/tests/src/Unit/Plugin/migrate/destination/EntityEventSeriesTest.php @@ -53,6 +53,7 @@ class EntityEventSeriesTest extends EntityTestBase { // Configure the mocked entity storage to create mocked entities. $entity = $this->prophesize(ContentEntityInterface::class); + $entity->setSyncing(TRUE)->willReturn($entity->reveal()); $entity->isValidationRequired()->willReturn(FALSE); $entity->validate()->willReturn([]); $entity->save()->willReturn(self::SAVED_NEW); -- GitLab