Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianVennen committed Jun 17, 2024
1 parent 0372c85 commit 1f7540f
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions test/tests/Logs/AutoLogsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,79 +98,79 @@ public function test_bungeecord(): void
* @return void
* @throws Exception
*/
public function test_CustomSkinLoader_12_6(): void
public function test_custom_skin_loader_1_19_3_snapshot(): void
{
$log = new TestLog('CustomSkinLoader/CustomSkinLoader_12_6.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-1-19-3-snapshot.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

/**
* @return void
* @throws Exception
*/
public function test_CustomSkinLoader_14_11(): void
public function test_custom_skin_loader_1_19_3(): void
{
$log = new TestLog('CustomSkinLoader/CustomSkinLoader_14_11.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-1-19-3.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

/**
* @return void
* @throws Exception
*/
public function test_CustomSkinLoader_14_13(): void
public function test_custom_skin_loader_12_6(): void
{
$log = new TestLog('CustomSkinLoader/CustomSkinLoader_14_13.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-12-6.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

/**
* @return void
* @throws Exception
*/
public function test_CustomSkinLoader_14_19(): void
public function test_custom_skin_loader_14_11(): void
{
$log = new TestLog('CustomSkinLoader/CustomSkinLoader_14_19.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-14-11.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

/**
* @return void
* @throws Exception
*/
public function test_CustomSkinLoader_14_6a(): void
public function test_custom_skin_loader_14_13(): void
{
$log = new TestLog('CustomSkinLoader/CustomSkinLoader_14_6a.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-14-13.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

/**
* @return void
* @throws Exception
*/
public function test_CustomSkinLoader_14_9(): void
public function test_custom_skin_loader_14_19(): void
{
$log = new TestLog('CustomSkinLoader/CustomSkinLoader_14_9.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-14-19.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

/**
* @return void
* @throws Exception
*/
public function test_custom_skin_loader_1_19_3_snapshot(): void
public function test_custom_skin_loader_14_6a(): void
{
$log = new TestLog('CustomSkinLoader/custom-skin-loader-1-19-3-snapshot.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-14-6a.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

/**
* @return void
* @throws Exception
*/
public function test_custom_skin_loader_1_19_3(): void
public function test_custom_skin_loader_14_9(): void
{
$log = new TestLog('CustomSkinLoader/custom-skin-loader-1-19-3.log');
$log = new TestLog('CustomSkinLoader/custom-skin-loader-14-9.log');
$this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath());
}

Expand Down

0 comments on commit 1f7540f

Please sign in to comment.