Request value is changed

This commit is contained in:
Batuhan Baş 2018-11-12 11:05:27 +03:00
parent 1d085b60a0
commit 597a0c53b5

View File

@ -67,7 +67,7 @@ class TaxesTest extends FeatureTestCase
'company_id' => $this->company->id, 'company_id' => $this->company->id,
'name' => $this->faker->text(15), 'name' => $this->faker->text(15),
'rate' => $this->faker->randomFloat(2, 10, 20), 'rate' => $this->faker->randomFloat(2, 10, 20),
'type' => 'Normal', 'type' => $this->faker->randomElement(['normal', 'inclusive', 'compound']),
'enabled' => $this->faker->boolean ? 1 : 0 'enabled' => $this->faker->boolean ? 1 : 0
]; ];
} }