Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / migrate / tests / src / Unit / process / SkipOnEmptyTest.php
index 08fbef238e4c35cf1df02420a1ef8f9ff4f1ac7d..d409a88e5338913dcdb98ad8296d333353a5fbad 100644 (file)
@@ -31,7 +31,7 @@ class SkipOnEmptyTest extends MigrateProcessTestCase {
     $configuration['method'] = 'process';
     $value = (new SkipOnEmpty($configuration, 'skip_on_empty', []))
       ->transform(' ', $this->migrateExecutable, $this->row, 'destinationproperty');
-    $this->assertSame($value, ' ');
+    $this->assertSame(' ', $value);
   }
 
   /**
@@ -51,7 +51,7 @@ class SkipOnEmptyTest extends MigrateProcessTestCase {
     $configuration['method'] = 'row';
     $value = (new SkipOnEmpty($configuration, 'skip_on_empty', []))
       ->transform(' ', $this->migrateExecutable, $this->row, 'destinationproperty');
-    $this->assertSame($value, ' ');
+    $this->assertSame(' ', $value);
   }
 
   /**