diff --git a/NightLight.Core.Tests/NightLightTests.fs b/NightLight.Core.Tests/NightLightTests.fs index a10c86d..9eaad9e 100644 --- a/NightLight.Core.Tests/NightLightTests.fs +++ b/NightLight.Core.Tests/NightLightTests.fs @@ -22,11 +22,11 @@ type NightLightTests() = fakeHome [ |])>] - let ``Lights should be white or yellow during the day`` (interactions: Interaction list) = + let ``All lights that are on should be white or yellow during the day`` (interactions: Interaction list) = let fakeHome = createFakeHomeWithNightLightAndInteract interactions fakeHome.ForAllLightsThatAreOn(fun (_, _, color) -> color = White || color = Yellow) [ |])>] - let ``Lights should be red during the night`` (interactions: Interaction list) = + let ``All lights that are on should be red during the night`` (interactions: Interaction list) = let fakeHome = createFakeHomeWithNightLightAndInteract interactions fakeHome.ForAllLightsThatAreOn(fun (_, _, color) -> color = Red)