1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-05-18 08:58:19 +03:00

Coding standards fix

This commit is contained in:
Matt Button 2011-02-18 15:47:46 +00:00
parent 110e510e54
commit 99eca42020

View file

@ -303,7 +303,7 @@ class Minion_Migration_ModelTest extends Kohana_Unittest_Database_TestCase
{
$this->assertSame(
$expected,
$this->getModel()->fetch_required_migrations((array) $group, $target)
$this->getModel()->fetch_required_migrations( (array) $group, $target)
);
}
@ -492,7 +492,7 @@ class Minion_Migration_ModelTest extends Kohana_Unittest_Database_TestCase
{
$this->assertSame(
$expected,
$this->getModel()->resolve_target((array) $group, $target)
$this->getModel()->resolve_target( (array) $group, $target)
);
}
}