Skip to content

Commit

Permalink
Fix test that was breaking on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravan Scafi committed Nov 29, 2018
1 parent 72dc4fd commit f31cfad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integration/PersistedDataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function testSaveUpdatingData()
// Assertions
$this->assertTrue($updateResult);
$this->assertInstanceOf(ReferencedUser::class, $result);
$this->assertSame($expected, $result->toArray());
$this->assertEquals($expected, $result->toArray());
}

public function testUpdateData()
Expand Down

0 comments on commit f31cfad

Please sign in to comment.