From ab4f3d62acf05a2828558380dce90169ec2f8120 Mon Sep 17 00:00:00 2001 From: Steffen Mahler Date: Mon, 6 Jul 2020 12:54:24 +0200 Subject: [PATCH] parenthesis incorrectly set --- tests/unit/Tax/Helpers/TaxCest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Tax/Helpers/TaxCest.php b/tests/unit/Tax/Helpers/TaxCest.php index 76082c762..1e329e9f6 100644 --- a/tests/unit/Tax/Helpers/TaxCest.php +++ b/tests/unit/Tax/Helpers/TaxCest.php @@ -20,7 +20,7 @@ class TaxCest public function _before(UnitTester $I) { - $country = strtoupper(Config::get('app.default_country') ?? 'DE'); + $country = strtoupper(Config::get('app.default_country')) ?? 'DE'; $tax1 = $I->have(TaxRate::class, [ 'country' => $country,