Skip to content

Commit

Permalink
move schema files
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Apr 18, 2021
1 parent 5d1a6f0 commit fc175c5
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/Console/Report/FixReport/CheckstyleReporterTest.php
Expand Up @@ -34,7 +34,7 @@ final class CheckstyleReporterTest extends AbstractReporterTestCase

public static function doSetUpBeforeClass()
{
self::$xsd = file_get_contents(__DIR__.'/../../../../doc/report-schema/checkstyle.xsd');
self::$xsd = file_get_contents(__DIR__.'/../../../../doc/schemas/fix/checkstyle.xsd');
}

public static function doTearDownAfterClass()
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/Report/FixReport/JsonReporterTest.php
Expand Up @@ -153,7 +153,7 @@ protected function assertFormat($expected, $input)
*/
private static function assertJsonSchema($json)
{
$jsonPath = __DIR__.'/../../../../doc/report-schema/schema.json';
$jsonPath = __DIR__.'/../../../../doc/schemas/fix/schema.json';

$data = json_decode($json);

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/Report/FixReport/JunitReporterTest.php
Expand Up @@ -39,7 +39,7 @@ public static function doSetUpBeforeClass()
{
parent::doSetUpBeforeClass();

self::$xsd = file_get_contents(__DIR__.'/../../../../doc/report-schema/junit-10.xsd');
self::$xsd = file_get_contents(__DIR__.'/../../../../doc/schemas/fix/junit-10.xsd');
}

public static function doTearDownAfterClass()
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/Report/FixReport/XmlReporterTest.php
Expand Up @@ -35,7 +35,7 @@ public static function doSetUpBeforeClass()
{
parent::doSetUpBeforeClass();

self::$xsd = file_get_contents(__DIR__.'/../../../../doc/report-schema/xml.xsd');
self::$xsd = file_get_contents(__DIR__.'/../../../../doc/schemas/fix/xml.xsd');
}

public static function doTearDownAfterClass()
Expand Down

0 comments on commit fc175c5

Please sign in to comment.