Skip to content

Commit 8d31d9a

Browse files
fgarobyFrancescu Garoby
andauthored
typos (#44493)
* typos * another typo Co-authored-by: Francescu Garoby <[email protected]>
1 parent ae9a17e commit 8d31d9a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Integration/Queue/JobDispatchingTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function testDispatchesConditionallyWithClosure()
4747
$this->assertTrue(Job::$ran);
4848
}
4949

50-
public function testDoesNotDispatchesConditionallyWithBoolean()
50+
public function testDoesNotDispatchConditionallyWithBoolean()
5151
{
5252
Job::dispatchUnless(true, 'test')->replaceValue('new-test');
5353

@@ -60,7 +60,7 @@ public function testDoesNotDispatchesConditionallyWithBoolean()
6060
$this->assertSame('new-test', Job::$value);
6161
}
6262

63-
public function testDoesNotDispatchesConditionallyWithClosure()
63+
public function testDoesNotDispatchConditionallyWithClosure()
6464
{
6565
Job::dispatchUnless(fn ($job) => $job instanceof Job ? 1 : 0, 'test')->replaceValue('new-test');
6666

tests/Validation/ValidationValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2659,7 +2659,7 @@ public function testValidateMax()
26592659
*
26602660
* @dataProvider multipleOfDataProvider
26612661
*/
2662-
public function testValidateMutlpleOf($input, $allowed, $passes)
2662+
public function testValidateMultipleOf($input, $allowed, $passes)
26632663
{
26642664
$trans = $this->getIlluminateArrayTranslator();
26652665
$trans->addLines(['validation.multiple_of' => 'The :attribute must be a multiple of :value'], 'en');

0 commit comments

Comments
 (0)