Skip to content

Commit

Permalink
Fix typo in test methods names
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Jul 25, 2019
1 parent c821cbf commit bbdb81e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ public function tearDown()
m::close();
}

public function testwithPivotValueMethodSetsWhereConditionsForFetching()
public function testWithPivotValueMethodSetsWhereConditionsForFetching()
{
$relation = $this->getMockBuilder(BelongsToMany::class)->setMethods(['touchIfTouching'])->setConstructorArgs($this->getRelationArguments())->getMock();
$relation->withPivotValue(['is_admin' => 1]);
}

public function testwithPivotValueMethodSetsDefaultArgumentsForInsertion()
public function testWithPivotValueMethodSetsDefaultArgumentsForInsertion()
{
$relation = $this->getMockBuilder(BelongsToMany::class)->setMethods(['touchIfTouching'])->setConstructorArgs($this->getRelationArguments())->getMock();
$relation->withPivotValue(['is_admin' => 1]);
Expand Down

0 comments on commit bbdb81e

Please sign in to comment.