X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fmigrate%2Ftests%2Fsrc%2FUnit%2Fprocess%2FConcatTest.php;fp=web%2Fcore%2Fmodules%2Fmigrate%2Ftests%2Fsrc%2FUnit%2Fprocess%2FConcatTest.php;h=e7873fee398897da16d51df69deaa408d79ec87f;hp=ea93e464377063c41bcfffdba96ce81c3dcf4ef8;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/core/modules/migrate/tests/src/Unit/process/ConcatTest.php b/web/core/modules/migrate/tests/src/Unit/process/ConcatTest.php index ea93e4643..e7873fee3 100644 --- a/web/core/modules/migrate/tests/src/Unit/process/ConcatTest.php +++ b/web/core/modules/migrate/tests/src/Unit/process/ConcatTest.php @@ -30,7 +30,7 @@ class ConcatTest extends MigrateProcessTestCase { */ public function testConcatWithoutDelimiter() { $value = $this->plugin->transform(['foo', 'bar'], $this->migrateExecutable, $this->row, 'destinationproperty'); - $this->assertSame($value, 'foobar'); + $this->assertSame('foobar', $value); } /** @@ -47,7 +47,7 @@ class ConcatTest extends MigrateProcessTestCase { public function testConcatWithDelimiter() { $this->plugin->setDelimiter('_'); $value = $this->plugin->transform(['foo', 'bar'], $this->migrateExecutable, $this->row, 'destinationproperty'); - $this->assertSame($value, 'foo_bar'); + $this->assertSame('foo_bar', $value); } }