File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -227,15 +227,15 @@ public function testHybridSync()
227
227
$ this ->assertEquals (2 , $ client ->usersMysql ->count ());
228
228
229
229
// sync 2 Clients
230
- $ user ->clients ()->sync ([$ client ->_id , $ otherClient ->_id ]);
230
+ $ user ->clients ()->sync ([$ client ->_id , $ otherClient ->_id ]);
231
231
$ user = MysqlUser::find ($ user ->id );
232
232
$ this ->assertEquals (2 , $ user ->clients ->count ());
233
233
// Sync 1 Client
234
234
$ user ->clients ()->sync ([$ client ->_id ]);
235
235
$ user = MysqlUser::find ($ user ->id );
236
236
$ this ->assertEquals (1 , $ user ->clients ->count ());
237
237
// Sync 2 Clients again
238
- $ user ->clients ()->sync ([$ client ->_id , $ otherClient ->_id ]);
238
+ $ user ->clients ()->sync ([$ client ->_id , $ otherClient ->_id ]);
239
239
$ user = MysqlUser::find ($ user ->id );
240
240
$ this ->assertEquals (2 , $ user ->clients ->count ());
241
241
}
You can’t perform that action at this time.
0 commit comments