From 644fea5ac317f28269508a5f9875a96c54f5d3a8 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 19 May 2020 23:11:24 +1000 Subject: [PATCH] Fixes for tests (#3722) --- tests/Unit/InvoiceActionsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/InvoiceActionsTest.php b/tests/Unit/InvoiceActionsTest.php index c9efaedc3aa3..8072d4c18355 100644 --- a/tests/Unit/InvoiceActionsTest.php +++ b/tests/Unit/InvoiceActionsTest.php @@ -27,7 +27,7 @@ class InvoiceActionsTest extends TestCase public function testInvoiceIsDeletable() { - $this->assertTrue($this->invoiceDeletable($this->invoice)); + $this->assertFalse($this->invoiceDeletable($this->invoice)); $this->assertTrue($this->invoiceReversable($this->invoice)); $this->assertTrue($this->invoiceCancellable($this->invoice)); }