@@ -126,7 +126,7 @@ public function testWhereHasOnARelationWithCustomIntermediateAndLocalKey()
126126 public function testFirstOrFailThrowsAnException ()
127127 {
128128 HasManyThroughTestCountry::create (['id ' => 1 , 'name ' => 'United States of America ' , 'shortname ' => 'us ' ])
129- ->users ()->create (['id ' => 1 , 'email ' => 'taylorotwell@gmail.com ' , 'country_short ' => 'us ' ]);
129+ ->users ()->create (['id ' => 1 , 'email ' => 'taylorotwell@gmail.com ' , 'country_short ' => 'us ' ]);
130130
131131 HasManyThroughTestCountry::first ()->posts ()->firstOrFail ();
132132 }
@@ -210,9 +210,9 @@ protected function seedData()
210210 HasManyThroughTestCountry::create (['id ' => 1 , 'name ' => 'United States of America ' , 'shortname ' => 'us ' ])
211211 ->users ()->create (['id ' => 1 , 'email ' => 'taylorotwell@gmail.com ' , 'country_short ' => 'us ' ])
212212 ->posts ()->createMany ([
213- ['title ' => 'A title ' , 'body ' => 'A body ' , 'email ' => 'taylorotwell@gmail.com ' ],
214- ['title ' => 'Another title ' , 'body ' => 'Another body ' , 'email ' => 'taylorotwell@gmail.com ' ],
215- ]);
213+ ['title ' => 'A title ' , 'body ' => 'A body ' , 'email ' => 'taylorotwell@gmail.com ' ],
214+ ['title ' => 'Another title ' , 'body ' => 'Another body ' , 'email ' => 'taylorotwell@gmail.com ' ],
215+ ]);
216216 }
217217
218218 /**
@@ -221,11 +221,11 @@ protected function seedData()
221221 protected function seedDefaultData ()
222222 {
223223 HasManyThroughDefaultTestCountry::create (['id ' => 1 , 'name ' => 'United States of America ' ])
224- ->users ()->create (['id ' => 1 , 'email ' => 'taylorotwell@gmail.com ' ])
225- ->posts ()->createMany ([
226- ['title ' => 'A title ' , 'body ' => 'A body ' ],
227- ['title ' => 'Another title ' , 'body ' => 'Another body ' ],
228- ]);
224+ ->users ()->create (['id ' => 1 , 'email ' => 'taylorotwell@gmail.com ' ])
225+ ->posts ()->createMany ([
226+ ['title ' => 'A title ' , 'body ' => 'A body ' ],
227+ ['title ' => 'Another title ' , 'body ' => 'Another body ' ],
228+ ]);
229229 }
230230
231231 /**
0 commit comments