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 {