diff --git a/composer.json b/composer.json index 26d1f9d..cf90c5d 100644 --- a/composer.json +++ b/composer.json @@ -19,9 +19,9 @@ "email": "jason@deefour.me" }, "require-dev": { - "illuminate/database": "4.1.29", - "illuminate/validation": "4.1.29", - "illuminate/support": "4.1.29", + "illuminate/database": "~4.2", + "illuminate/validation": "~4.2", + "illuminate/support": "~4.2", "silex/silex": "~1.2", "mockery/mockery": "0.9.*", "phpunit/phpunit": "4.0.*", diff --git a/tests/Persistence/Model/Eloquent/ModelTest.php b/tests/Persistence/Model/Eloquent/ModelTest.php index 957ca9f..ccf7d8b 100644 --- a/tests/Persistence/Model/Eloquent/ModelTest.php +++ b/tests/Persistence/Model/Eloquent/ModelTest.php @@ -10,7 +10,7 @@ public function testIsEloquentBacked() { $dummy = new TestDummy; $this->assertInstanceOf('\Illuminate\Database\Eloquent\Model', $dummy); - $this->assertCount(3, $dummy->getDates()); + $this->assertCount(2, $dummy->getDates()); } public function testFromArray() {