Fix test being repeat step

This commit is contained in:
Dean Herbert 2024-08-22 14:05:59 +09:00
parent 54e5f1c9f0
commit dfb4a76e29
No known key found for this signature in database

View File

@ -67,11 +67,11 @@ namespace osu.Game.Tests.Visual.Menus
};
});
AddRepeatStep("activate fountains", () =>
AddStep("activate fountains", () =>
{
((StarFountain)Children[0]).Shoot(1);
((StarFountain)Children[1]).Shoot(-1);
}, 150);
});
}
}
}