From 8f53033db47746aea34b6d2bb2949324ec1b0dbf Mon Sep 17 00:00:00 2001 From: Sven van Heugten Date: Wed, 14 Jan 2026 21:02:12 +0100 Subject: [PATCH] Add missing case to genInteraction --- NightLight.Core.Tests/InteractionListGenerators.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NightLight.Core.Tests/InteractionListGenerators.fs b/NightLight.Core.Tests/InteractionListGenerators.fs index d78ef69..9c18e45 100644 --- a/NightLight.Core.Tests/InteractionListGenerators.fs +++ b/NightLight.Core.Tests/InteractionListGenerators.fs @@ -15,7 +15,7 @@ let private genRemoteInteraction = |> Gen.map RemoteInteraction let private genInteraction biasTowardsLight = - Gen.oneof [ genTimeChanged; genHumanInteraction biasTowardsLight ] + Gen.oneof [ genTimeChanged; genHumanInteraction biasTowardsLight; genRemoteInteraction ] let genRandomInteractionsExcept biasTowardsLight disqualifier = genInteraction biasTowardsLight