Fixed test code

the test still doesn't pass, but at least it's actually testing the problem now...
This commit is contained in:
Dylan K. Taylor 2024-11-13 18:52:56 +00:00
parent 6f40c6fc1d
commit 32b1d6c0c2
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
2 changed files with 2 additions and 2 deletions

View File

@ -23,6 +23,6 @@ declare(strict_types=1);
namespace pmmp\TesterPlugin\event;
final class ChildAsyncEvent extends ParentAsyncEvent{
class ChildAsyncEvent extends ParentAsyncEvent{
}

View File

@ -23,6 +23,6 @@ declare(strict_types=1);
namespace pmmp\TesterPlugin\event;
class GrandchildAsyncEvent extends \pocketmine\event\AsyncEvent{
class GrandchildAsyncEvent extends ChildAsyncEvent{
}