Remove deprecated API usages from tests

This commit is contained in:
Dylan K. Taylor
2023-09-07 20:30:45 +01:00
parent 7dcd2592d4
commit 58278f22f3
3 changed files with 7 additions and 7 deletions

View File

@ -34,9 +34,9 @@ class BrewingStandTest extends TestCase{
* @phpstan-return \Generator<int, array{list<BrewingStandSlot>}, void, void>
*/
public static function slotsProvider() : \Generator{
yield [array_values(BrewingStandSlot::getAll())];
yield [[BrewingStandSlot::EAST()]];
yield [[BrewingStandSlot::EAST(), BrewingStandSlot::NORTHWEST()]];
yield [BrewingStandSlot::cases()];
yield [[BrewingStandSlot::EAST]];
yield [[BrewingStandSlot::EAST, BrewingStandSlot::NORTHWEST]];
}
/**