Skip to content

Commit

Permalink
use short name for DIRECTORY_SEPARATOR
Browse files Browse the repository at this point in the history
  • Loading branch information
easy-system committed Jun 21, 2016
1 parent 3158195 commit 2b85018
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/TemplateRenderer/ErrorRendererTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ public function setUp()
}

$this->filesDir = dirname(__DIR__)
. DIRECTORY_SEPARATOR
. PHP_DS
. 'files'
. DIRECTORY_SEPARATOR;
. PHP_DS;
}

public function testSetResolver()
Expand Down
4 changes: 2 additions & 2 deletions test/TemplateRenderer/ResolverFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ class ResolverFactoryTest extends \PHPUnit_Framework_TestCase
public function setUp()
{
$this->filesDir = dirname(__DIR__)
. DIRECTORY_SEPARATOR
. PHP_DS
. 'files'
. DIRECTORY_SEPARATOR;
. PHP_DS;
}

public function testMake()
Expand Down
4 changes: 2 additions & 2 deletions test/TemplateRenderer/TemplateResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ class TemplateResolverTest extends \PHPUnit_framework_TestCase
public function setUp()
{
$this->filesDir = dirname(__DIR__)
. DIRECTORY_SEPARATOR
. PHP_DS
. 'files'
. DIRECTORY_SEPARATOR;
. PHP_DS;
}

public function testGetTemplates()
Expand Down

0 comments on commit 2b85018

Please sign in to comment.