8000 Fix typo in test methods names · laravel/framework@bbdb81e · GitHub
[go: up one dir, main page]

Skip to content

Commit bbdb81e

Browse files
committed
Fix typo in test methods names
1 parent c821cbf commit bbdb81e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Database/DatabaseEloquentBelongsToManyWithDefaultAttributesTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ public function tearDown()
1515
m::close();
1616
}
1717

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

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

0 commit comments

Comments
 (0)
0