From ee1f6ed3a945403b3170067e4dc357661c012ee3 Mon Sep 17 00:00:00 2001 From: Corey McKrill <916023+coreymckrill@users.noreply.github.com> Date: Wed, 12 Apr 2023 14:32:42 -0700 Subject: [PATCH] Linting fix --- .../tests/php/src/Internal/Utilities/COTMigrationUtilTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/woocommerce/tests/php/src/Internal/Utilities/COTMigrationUtilTest.php b/plugins/woocommerce/tests/php/src/Internal/Utilities/COTMigrationUtilTest.php index 5ff7faf68ea..daa5ef000b5 100644 --- a/plugins/woocommerce/tests/php/src/Internal/Utilities/COTMigrationUtilTest.php +++ b/plugins/woocommerce/tests/php/src/Internal/Utilities/COTMigrationUtilTest.php @@ -30,7 +30,7 @@ class COTMigrationUtilTest extends WC_Unit_Test_Case { parent::setUp(); $this->sut = wc_get_container()->get( COTMigrationUtil::class ); - $cot_controller = wc_get_container()->get( CustomOrdersTableController::class ); + $cot_controller = wc_get_container()->get( CustomOrdersTableController::class ); $this->prev_cot_state = $cot_controller->custom_orders_table_usage_is_enabled(); }