Browse Source

Code style

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
fc4098b89a
  1. 2
      tests/unit/framework/base/ExceptionTest.php

2
tests/unit/framework/base/ExceptionTest.php

@ -15,7 +15,7 @@ class ExceptionTest extends TestCase
$this->assertEquals('bar', $array['message']); $this->assertEquals('bar', $array['message']);
$this->assertEquals('foo', $array['previous']['message']); $this->assertEquals('foo', $array['previous']['message']);
$e = new InvalidCallException('bar', 0 ,new UserException('foo')); $e = new InvalidCallException('bar', 0, new UserException('foo'));
$array = $e->toArray(); $array = $e->toArray();
$this->assertEquals('bar', $array['message']); $this->assertEquals('bar', $array['message']);
$this->assertEquals('foo', $array['previous']['message']); $this->assertEquals('foo', $array['previous']['message']);

Loading…
Cancel
Save