diff --git a/core/modules/migrate/tests/src/Unit/process/StaticMapTest.php b/core/modules/migrate/tests/src/Unit/process/StaticMapTest.php index 986e8b41f6..33c274816e 100644 --- a/core/modules/migrate/tests/src/Unit/process/StaticMapTest.php +++ b/core/modules/migrate/tests/src/Unit/process/StaticMapTest.php @@ -87,6 +87,7 @@ public function testMapWithInvalidSourceAndBypass() { $this->setExpectedException(MigrateException::class, 'Setting both default_value and bypass is invalid.'); $this->plugin->transform(['bar'], $this->migrateExecutable, $this->row, 'destinationproperty'); } + /** * Tests when the source is invalid and bypass is empty. */ @@ -96,4 +97,5 @@ public function testMapWithInvalidSourceAndEmptyBypass() { $this->setExpectedException(MigrateSkipRowException::class, 'Skipping, no mapped value found.'); $this->plugin->transform(['bar'], $this->migrateExecutable, $this->row, 'destinationproperty'); } + }