From d55978cf931ced2bc9f0d982bb6b8269fbace1f9 Mon Sep 17 00:00:00 2001 From: oleibman <10341515+oleibman@users.noreply.github.com> Date: Sat, 20 Aug 2022 19:58:43 -0700 Subject: [PATCH] Correct Namespaces in 11 Tests (#3020) The setup for unit testing in Github in the "Install dependencies" log reports 11 members as "does not comply with with psr-4 autoloading standard." In each case, it is because the test namespace does not match the directory; in most cases, it was caused by the member being moved from one directory to another without changing the namespace declaration. No harm results from these problems, but there's also no reason to not correct them. --- tests/PhpSpreadsheetTests/Calculation/XlfnFunctionsTest.php | 2 +- tests/PhpSpreadsheetTests/Chart/BarChartCustomColorsTest.php | 2 +- tests/PhpSpreadsheetTests/Chart/PieFillTest.php | 2 +- tests/PhpSpreadsheetTests/Chart/RenderTest.php | 2 +- .../PhpSpreadsheetTests/Reader/Xlsx/NamespaceIssue2109bTest.php | 2 +- tests/PhpSpreadsheetTests/Reader/Xlsx/NamespaceNonStdTest.php | 2 +- .../PhpSpreadsheetTests/Reader/Xlsx/NamespaceOpenpyxl35Test.php | 2 +- tests/PhpSpreadsheetTests/Reader/Xlsx/NamespacePurlTest.php | 2 +- tests/PhpSpreadsheetTests/Reader/Xlsx/NamespaceStdTest.php | 2 +- .../Style/ConditionalFormatting/Wizard/DateValueWizardTest.php | 2 +- tests/PhpSpreadsheetTests/Writer/Mpdf/ImageCopyPdfTest.php | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/PhpSpreadsheetTests/Calculation/XlfnFunctionsTest.php b/tests/PhpSpreadsheetTests/Calculation/XlfnFunctionsTest.php index f8f02f0e..3edd22c8 100644 --- a/tests/PhpSpreadsheetTests/Calculation/XlfnFunctionsTest.php +++ b/tests/PhpSpreadsheetTests/Calculation/XlfnFunctionsTest.php @@ -1,6 +1,6 @@