diff --git a/tests/factories.py b/tests/factories.py index 0f37d4e9..b456ee1d 100644 --- a/tests/factories.py +++ b/tests/factories.py @@ -388,7 +388,7 @@ class TaskOrderFactory(Base): defense_component = factory.LazyFunction(random_service_branch) app_migration = random_choice(data.APP_MIGRATION) - native_apps = random.choices(["yes", "no", "not_sure"]) + native_apps = random.choice(["yes", "no", "not_sure"]) complexity = [random_choice(data.APPLICATION_COMPLEXITY)] dev_team = [random_choice(data.DEV_TEAM)] team_experience = random_choice(data.TEAM_EXPERIENCE)