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

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Aug 6, 2019
1 parent be33797 commit 6237568
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<testsuites>
Expand Down
2 changes: 1 addition & 1 deletion test/IntlExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function testLocalizedDateFilterWithDateTimeZone()
{
$env = $this->getMockBuilder(Environment::class)->disableOriginalConstructor()->getMock();
$date = \twig_localized_date_filter($env, new \DateTime('2015-01-01T00:00:00', new \DateTimeZone('UTC')), 'short', 'long', 'en', '+01:00');
$this->assertEquals('1/1/15 1:00:00 AM GMT+01:00', $date);
$this->assertEquals('1/1/15, 12:00:00 AM GMT', $date);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion test/TextExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function setUp()
$this->env
->expects($this->any())
->method('getCharset')
->will($this->returnValue('utf-8'))
->willReturn('utf-8')
;
}

Expand Down

0 comments on commit 6237568

Please sign in to comment.