Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/Feature/ProductEntityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public function test_create_product()
$this->assertInstanceOf(ProductEntity::class, $response);
}

public function test_validation_error_on_create_issued_document()
public function test_validation_error_on_create_product()
{
$product = new Product();
$response = $product->create([]);
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/ReceiptEntityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public function test_monthly_totals_receipt()
$this->assertInstanceOf(ReceiptMonthlyTotals::class, $response[0]);
}

public function test_validation_error_on_create_issued_document()
public function test_validation_error_on_monthly_totals()
{
$receipt = new Receipt();
$response = $receipt->monthlyTotals('fake_type', 2022);
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/SupplierEntityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public function test_create_supplier()
$this->assertInstanceOf(SupplierEntity::class, $response);
}

public function test_validation_error_on_create_issued_document()
public function test_validation_error_on_create_supplier()
{
$supplier = new Supplier();
$response = $supplier->create([]);
Expand Down Expand Up @@ -259,7 +259,7 @@ public function test_edit_supplier()
$this->assertInstanceOf(SupplierEntity::class, $response);
}

public function test_validation_error_on_edit_issued_document()
public function test_validation_error_on_edit_supplier()
{
$supplier_id = 1;

Expand Down
Loading