From 2c511d55ebf3d17024152b65960a158efcc58ea7 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Sat, 12 Aug 2017 18:29:12 +0200 Subject: [PATCH] Fixed merge issue --- .../Visitor/Php/Symfony/FormTypePlaceholderTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Functional/Visitor/Php/Symfony/FormTypePlaceholderTest.php b/tests/Functional/Visitor/Php/Symfony/FormTypePlaceholderTest.php index f9a2cab..e334112 100644 --- a/tests/Functional/Visitor/Php/Symfony/FormTypePlaceholderTest.php +++ b/tests/Functional/Visitor/Php/Symfony/FormTypePlaceholderTest.php @@ -51,11 +51,13 @@ public function testChildVisitationNotBlocked() Resources\Php\Symfony\ContainerAwareTrans::class ); - $this->assertCount(4, $collection); + $this->assertCount(6, $collection); $this->assertEquals('trans0', $collection->get(0)->getMessage()); $this->assertEquals('trans1', $collection->get(1)->getMessage()); $this->assertEquals('trans_line', $collection->get(2)->getMessage()); $this->assertEquals('variable', $collection->get(3)->getMessage()); + $this->assertEquals('my.pdf', $collection->get(4)->getMessage()); + $this->assertEquals('bar', $collection->get(5)->getMessage()); } }