Skip to content

Commit

Permalink
Fixed test.
Browse files Browse the repository at this point in the history
  • Loading branch information
tadcka committed Oct 23, 2014
1 parent e6ae141 commit 444f3b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Generator/TadckaModelGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ protected function getGenerator()
protected function getFields()
{
return array(
array('name' => 'bar', 'type' => 'string'),
array('name' => 'baz', 'type' => 'int'),
array('name' => 'acme', 'type' => 'Foo\\BarBundle\\Model\\AcmeInterface'),
array('name' => 'bar', 'methodName' => 'Bar', 'type' => 'string'),
array('name' => 'baz', 'methodName' => 'Baz', 'type' => 'int'),
array('name' => 'acme', 'methodName' => 'Acme', 'type' => 'Foo\\BarBundle\\Model\\AcmeInterface'),
);
}
}

0 comments on commit 444f3b3

Please sign in to comment.