From 503d2aa786c96090eadd4af479d1b1b8f0390d6a Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 9 Feb 2025 05:57:47 +0100 Subject: [PATCH] Rename class to stop phpunit complaining. --- changelog.md | 1 + ...est.php => AbstractQueryParserInterfaceParseQueryTester.php} | 2 +- .../Support/Search/QueryParser/QueryParserParseQueryTest.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) rename tests/unit/Support/Search/QueryParser/{AbstractQueryParserInterfaceParseQueryTest.php => AbstractQueryParserInterfaceParseQueryTester.php} (99%) diff --git a/changelog.md b/changelog.md index 48ec88255f..31d6334964 100644 --- a/changelog.md +++ b/changelog.md @@ -13,6 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - [Discussion 9780](https://github.com/orgs/firefly-iii/discussions/9780) (Rules or webhook precedence?) started by @joeshmoe57 - [Issue 9781](https://github.com/firefly-iii/firefly-iii/issues/9781) (Search key `has_any_external_url:false` returns all transactions) reported by @joeshmoe57 - [Issue 9783](https://github.com/firefly-iii/firefly-iii/issues/9783) (Subscriptions: Make "Not expected this period" and "expected x days from now" different colors) reported by @SteffoSpieler +- #9784 - [Issue 9786](https://github.com/firefly-iii/firefly-iii/issues/9786) (The error 500 information page has non-clickable links to github and the debug page) reported by @tjmv - [Issue 9787](https://github.com/firefly-iii/firefly-iii/issues/9787) (Twig general template error formatting TransactionCurrency on main page) reported by @tjmv - [Issue 9789](https://github.com/firefly-iii/firefly-iii/issues/9789) (Can't open expense and revenue accounts view) reported by @puffer-duck diff --git a/tests/unit/Support/Search/QueryParser/AbstractQueryParserInterfaceParseQueryTest.php b/tests/unit/Support/Search/QueryParser/AbstractQueryParserInterfaceParseQueryTester.php similarity index 99% rename from tests/unit/Support/Search/QueryParser/AbstractQueryParserInterfaceParseQueryTest.php rename to tests/unit/Support/Search/QueryParser/AbstractQueryParserInterfaceParseQueryTester.php index f68cb80969..c2abc6aeb2 100644 --- a/tests/unit/Support/Search/QueryParser/AbstractQueryParserInterfaceParseQueryTest.php +++ b/tests/unit/Support/Search/QueryParser/AbstractQueryParserInterfaceParseQueryTester.php @@ -11,7 +11,7 @@ use FireflyIII\Support\Search\QueryParser\NodeGroup; use FireflyIII\Support\Search\QueryParser\Node; use Tests\integration\TestCase; -abstract class AbstractQueryParserInterfaceParseQueryTest extends TestCase +abstract class AbstractQueryParserInterfaceParseQueryTester extends TestCase { abstract protected function createParser(): QueryParserInterface; diff --git a/tests/unit/Support/Search/QueryParser/QueryParserParseQueryTest.php b/tests/unit/Support/Search/QueryParser/QueryParserParseQueryTest.php index de0f30ab9f..bdfffc427a 100644 --- a/tests/unit/Support/Search/QueryParser/QueryParserParseQueryTest.php +++ b/tests/unit/Support/Search/QueryParser/QueryParserParseQueryTest.php @@ -16,7 +16,7 @@ use FireflyIII\Support\Search\QueryParser\QueryParserInterface; * * @coversNothing */ -final class QueryParserParseQueryTest extends AbstractQueryParserInterfaceParseQueryTest +final class QueryParserParseQueryTest extends AbstractQueryParserInterfaceParseQueryTester { protected function createParser(): QueryParserInterface {