mirror of
https://github.com/osukey/osukey.git
synced 2025-07-10 21:00:00 +09:00
Fix test failures
This commit is contained in:
@ -43,10 +43,10 @@ namespace osu.Game.Tests.Visual.Editing
|
|||||||
[Test]
|
[Test]
|
||||||
public void TestBindableBeatDivisor()
|
public void TestBindableBeatDivisor()
|
||||||
{
|
{
|
||||||
AddRepeatStep("move previous", () => bindableBeatDivisor.Previous(), 4);
|
AddRepeatStep("move previous", () => bindableBeatDivisor.Previous(), 2);
|
||||||
AddAssert("divisor is 4", () => bindableBeatDivisor.Value == 4);
|
AddAssert("divisor is 4", () => bindableBeatDivisor.Value == 4);
|
||||||
AddRepeatStep("move next", () => bindableBeatDivisor.Next(), 3);
|
AddRepeatStep("move next", () => bindableBeatDivisor.Next(), 1);
|
||||||
AddAssert("divisor is 12", () => bindableBeatDivisor.Value == 12);
|
AddAssert("divisor is 12", () => bindableBeatDivisor.Value == 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
Reference in New Issue
Block a user