Skip to content

Commit 2dc0e87

Browse files
committed
Pint
1 parent ce7ad0c commit 2dc0e87

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/Feature/Customer/CreateCustomerTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ public function test_can_create_customer(): void
4141
{
4242
$user = $this->login(['create_customer', 'view_any_customer']);
4343

44-
$customer = Customer::factory()->make([
45-
'user_id' => $user->id,
46-
'phone' => '09291530090',
47-
])->toArray();
44+
$customer = Customer::factory()->make(['user_id' => $user->id])->toArray();
4845

4946
Livewire::test(CustomerResource\Pages\CreateCustomer::class)
5047
->fillForm($customer)

0 commit comments

Comments
 (0)