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

Commit

Permalink
remove CS ignore, make assert call multiline
Browse files Browse the repository at this point in the history
  • Loading branch information
pine3ree committed May 22, 2019
1 parent 6e20aff commit c27c053
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions test/ZendViewRendererFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,18 @@ public function testConfiguresPaths()
$this->assertPathNamespaceCount(3, null, $paths);

$dirSlash = DIRECTORY_SEPARATOR;
// @codingStandardsIgnoreStart
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/bar' . $dirSlash, 'foo', $paths, var_export($paths, true));

$this->assertPathNamespaceContains(
__DIR__ . '/TestAsset/bar' . $dirSlash,
'foo',
$paths,
var_export($paths, true)
);
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/baz' . $dirSlash, 'bar', $paths);
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/bat' . $dirSlash, 'bar', $paths);
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/one' . $dirSlash, null, $paths);
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/two' . $dirSlash, null, $paths);
$this->assertPathNamespaceContains(__DIR__ . '/TestAsset/three' . $dirSlash, null, $paths);
// @codingStandardsIgnoreEnd
}

public function testConfiguresTemplateMap()
Expand Down

0 comments on commit c27c053

Please sign in to comment.