Skip to content

Commit

Permalink
Move alias to proper place (#5151)
Browse files Browse the repository at this point in the history
follow up on d656ccc
  • Loading branch information
hexmode committed Nov 29, 2021
1 parent d656ccc commit 64cab9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions tests/autoloader.php
Expand Up @@ -78,8 +78,9 @@
'SMW\Tests\DatabaseTestCase' => __DIR__ . '/phpunit/DatabaseTestCase.php',
'SMW\Tests\JSONScriptTestCaseRunner' => __DIR__ . '/phpunit/JSONScriptTestCaseRunner.php',
'SMW\Tests\JSONScriptServicesTestCaseRunner' => __DIR__ . '/phpunit/JSONScriptServicesTestCaseRunner.php',
'SMW\Tests\QueryPrinterTestCase' => __DIR__ . '/phpunit/QueryPrinterTestCase.php',
'SMW\Tests\QueryPrinterRegistryTestCase' => __DIR__ . '/phpunit/QueryPrinterRegistryTestCase.php',
'SMW\Tests\QueryPrinterTestCase' => __DIR__ . '/phpunit/QueryPrinterTestCase.php',
'SMW\Tests\QueryPrinterRegistryTestCase' => __DIR__ . '/phpunit/QueryPrinterRegistryTestCase.php',
'SMW\Test\QueryPrinterRegistryTestCase' => __DIR__ . '/phpunit/QueryPrinterRegistryTestCase.php',
'SMW\Tests\SPARQLStore\RepositoryConnectors\ElementaryRepositoryConnectorTest' => __DIR__ . '/phpunit/Unit/SPARQLStore/RepositoryConnectors/ElementaryRepositoryConnectorTest.php',

// Reference needed for SRF as it inherits from this class (or better its alias)!!
Expand Down
1 change: 0 additions & 1 deletion tests/phpunit/QueryPrinterRegistryTestCase.php
Expand Up @@ -92,4 +92,3 @@ public function testConstructor( $format, $isInline ) {
* @deprecated since SMW 1.9
*/
class_alias( 'SMW\Tests\QueryPrinterRegistryTestCase', 'SMW\Tests\ResultPrinterTestCase' );
class_alias( 'SMW\Tests\QueryPrinterRegistryTestCase', 'SMW\Test\QueryResultPrinter' );

0 comments on commit 64cab9f

Please sign in to comment.