From a25b1c49ff808c6a98c2809bc619c4717740e963 Mon Sep 17 00:00:00 2001 From: Danny van der Sluijs Date: Fri, 2 Aug 2024 15:00:55 +0200 Subject: [PATCH 1/2] fix: Add missing property definition --- tests/Uri/UriResolverTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Uri/UriResolverTest.php b/tests/Uri/UriResolverTest.php index a353de50..b0207cb7 100644 --- a/tests/Uri/UriResolverTest.php +++ b/tests/Uri/UriResolverTest.php @@ -7,6 +7,8 @@ class UriResolverTest extends TestCase { + private $resolver; + public function setUp() { $this->resolver = new UriResolver(); From 1e522a36663613a8319544d2cdd3472c0b1f868a Mon Sep 17 00:00:00 2001 From: Danny van der Sluijs Date: Fri, 2 Aug 2024 15:03:18 +0200 Subject: [PATCH 2/2] docs: Add changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index efab5434..965b775d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Correct misconfigured mocks in JsonSchema\Tests\Uri\UriRetrieverTest ([#741](https://github.com/jsonrainbow/json-schema/pull/741)) - Fix pugx badges in README ([#742](https://github.com/jsonrainbow/json-schema/pull/742)) +- Add missing property in UriResolverTest ([#743](https://github.com/jsonrainbow/json-schema/pull/743)) ## [6.0.0] - 2024-07-30 ### Added