Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy-j committed Jun 4, 2019
1 parent 80bcef1 commit c35873b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/ORM/EmbeddedRelationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,10 @@ public function testInitRelationReferenceNothing()
public function testUpdateEmbeddedDirectly()
{
$selector = new Select($this->orm, User::class);
$u = $selector->orderBy('id', 'ASC')->load('credentials')->fetchOne();
$u = $selector
->orderBy('id', 'ASC')
->load('credentials')
->fetchOne();

$this->captureWriteQueries();
$t = new Transaction($this->orm);
Expand Down

0 comments on commit c35873b

Please sign in to comment.