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
1 changed files with 2 additions and 2 deletions

View File

@ -67,11 +67,11 @@ public void TestGameplay()
};
});
AddRepeatStep("activate fountains", () =>
AddStep("activate fountains", () =>
{
((StarFountain)Children[0]).Shoot(1);
((StarFountain)Children[1]).Shoot(-1);
}, 150);
});
}
}
}