Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit c27c053

Browse files
committed
remove CS ignore, make assert call multiline
1 parent 6e20aff commit c27c053

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/ZendViewRendererFactoryTest.php

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,14 +202,18 @@ public function testConfiguresPaths()
202202
$this->assertPathNamespaceCount(3, null, $paths);
203203

204204
$dirSlash = DIRECTORY_SEPARATOR;
205-
// @codingStandardsIgnoreStart
206-
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/bar' . $dirSlash, 'foo', $paths, var_export($paths, true));
205+
206+
$this->assertPathNamespaceContains(
207+
__DIR__ . '/TestAsset/bar' . $dirSlash,
208+
'foo',
209+
$paths,
210+
var_export($paths, true)
211+
);
207212
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/baz' . $dirSlash, 'bar', $paths);
208213
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/bat' . $dirSlash, 'bar', $paths);
209214
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/one' . $dirSlash, null, $paths);
210215
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/two' . $dirSlash, null, $paths);
211216
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/three' . $dirSlash, null, $paths);
212-
// @codingStandardsIgnoreEnd
213217
}
214218

215219
public function testConfiguresTemplateMap()

0 commit comments

Comments
 (0)