Skip to content

Commit

Permalink
Fix indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
ruudk committed Mar 8, 2012
1 parent 39efae2 commit a81f0dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/Serializer/BaseSerializationTest.php
Expand Up @@ -199,7 +199,7 @@ public function testBlogPost()
}
}

public function testReadOnly()
public function testReadOnly()
{
$author = new AuthorReadOnly(123, 'Ruud Kamphuis');
$this->assertEquals($this->getContent('readonly'), $this->serialize($author));
Expand Down
2 changes: 1 addition & 1 deletion Tests/Serializer/JsonSerializationTest.php
Expand Up @@ -28,7 +28,7 @@ protected function getContent($key)
static $outputs = array();

if (!$outputs) {
$outputs['readonly'] = '{"id":123,"full_name":"Ruud Kamphuis"}';
$outputs['readonly'] = '{"id":123,"full_name":"Ruud Kamphuis"}';
$outputs['string'] = '"foo"';
$outputs['boolean_true'] = 'true';
$outputs['boolean_false'] = 'false';
Expand Down

0 comments on commit a81f0dd

Please sign in to comment.