mirror of
https://github.com/osukey/osukey.git
synced 2025-05-26 07:57:32 +09:00
Fix test failures
This commit is contained in:
parent
7de5dad4f0
commit
a5600516f0
@ -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]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user