mirror of https://github.com/ppy/osu
Fix test being repeat step
This commit is contained in:
parent
54e5f1c9f0
commit
dfb4a76e29
|
@ -67,11 +67,11 @@ public void TestGameplay()
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
AddRepeatStep("activate fountains", () =>
|
AddStep("activate fountains", () =>
|
||||||
{
|
{
|
||||||
((StarFountain)Children[0]).Shoot(1);
|
((StarFountain)Children[0]).Shoot(1);
|
||||||
((StarFountain)Children[1]).Shoot(-1);
|
((StarFountain)Children[1]).Shoot(-1);
|
||||||
}, 150);
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue