diff --git a/CHANGELOG.md b/CHANGELOG.md index 965b775d..fbaa5be1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 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)) +- Correct casing of paths used in tests ([#745](https://github.com/jsonrainbow/json-schema/pull/745)) ## [6.0.0] - 2024-07-30 ### Added diff --git a/tests/Constraints/VeryBaseTestCase.php b/tests/Constraints/VeryBaseTestCase.php index 7cd7c06b..f12cba88 100644 --- a/tests/Constraints/VeryBaseTestCase.php +++ b/tests/Constraints/VeryBaseTestCase.php @@ -30,7 +30,7 @@ abstract class VeryBaseTestCase extends TestCase */ protected function getUriRetrieverMock($schema) { - $relativeTestsRoot = realpath(__DIR__ . '/../../vendor/json-schema/JSON-Schema-Test-Suite/remotes'); + $relativeTestsRoot = realpath(__DIR__ . '/../../vendor/json-schema/json-schema-test-suite/remotes'); $jsonSchemaDraft03 = $this->getJsonSchemaDraft03(); $jsonSchemaDraft04 = $this->getJsonSchemaDraft04(); diff --git a/tests/Drafts/BaseDraftTestCase.php b/tests/Drafts/BaseDraftTestCase.php index 1cfe634c..8af703e7 100644 --- a/tests/Drafts/BaseDraftTestCase.php +++ b/tests/Drafts/BaseDraftTestCase.php @@ -10,7 +10,7 @@ abstract class BaseDraftTestCase extends BaseTestCase { /** @var string */ - protected $relativeTestsRoot = '/../../vendor/json-schema/JSON-Schema-Test-Suite/tests'; + protected $relativeTestsRoot = '/../../vendor/json-schema/json-schema-test-suite/tests'; private function setUpTests($isValid) {