File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ public function test_create_product()
244
244
$ this ->assertInstanceOf (ProductEntity::class, $ response );
245
245
}
246
246
247
- public function test_validation_error_on_create_issued_document ()
247
+ public function test_validation_error_on_create_product ()
248
248
{
249
249
$ product = new Product ();
250
250
$ response = $ product ->create ([]);
Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ public function test_monthly_totals_receipt()
362
362
$ this ->assertInstanceOf (ReceiptMonthlyTotals::class, $ response [0 ]);
363
363
}
364
364
365
- public function test_validation_error_on_create_issued_document ()
365
+ public function test_validation_error_on_monthly_totals ()
366
366
{
367
367
$ receipt = new Receipt ();
368
368
$ response = $ receipt ->monthlyTotals ('fake_type ' , 2022 );
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ public function test_create_supplier()
212
212
$ this ->assertInstanceOf (SupplierEntity::class, $ response );
213
213
}
214
214
215
- public function test_validation_error_on_create_issued_document ()
215
+ public function test_validation_error_on_create_supplier ()
216
216
{
217
217
$ supplier = new Supplier ();
218
218
$ response = $ supplier ->create ([]);
@@ -259,7 +259,7 @@ public function test_edit_supplier()
259
259
$ this ->assertInstanceOf (SupplierEntity::class, $ response );
260
260
}
261
261
262
- public function test_validation_error_on_edit_issued_document ()
262
+ public function test_validation_error_on_edit_supplier ()
263
263
{
264
264
$ supplier_id = 1 ;
265
265
You can’t perform that action at this time.
0 commit comments