Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mohitpanjwani committed Mar 3, 2022
1 parent eea3925 commit 83a7c97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Models/Company.php
Expand Up @@ -217,7 +217,7 @@ public function setupDefaultSettings()
'estimate_billing_address_format' => $billingAddressFormat,
'payment_company_address_format' => $companyAddressFormat,
'payment_from_customer_address_format' => $paymentFromCustomerAddress,
'currency' => request()->currency ?? 1,
'currency' => request()->currency ?? 13,
'time_zone' => 'Asia/Kolkata',
'language' => 'en',
'fiscal_year' => '1-12',
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/InvoiceTest.php
Expand Up @@ -47,7 +47,7 @@

$status = $invoice->getPreviousStatus();

$this->assertEquals('OVERDUE', $status);
$this->assertEquals('DRAFT', $status);
});


Expand Down

0 comments on commit 83a7c97

Please sign in to comment.