diff --git a/test/towerops_web/live/org/settings_live_property_test.exs b/test/towerops_web/live/org/settings_live_property_test.exs index 3d7906b5..343ee587 100644 --- a/test/towerops_web/live/org/settings_live_property_test.exs +++ b/test/towerops_web/live/org/settings_live_property_test.exs @@ -54,7 +54,7 @@ defmodule ToweropsWeb.Org.SettingsLivePropertyTest do user: user, organization: org } do - check all(name <- string(:printable, max_length: 200), max_runs: 15) do + check all(name <- string(:printable, max_length: 200), max_runs: 10) do {:ok, view, _html} = conn |> log_in_user(user) @@ -77,7 +77,7 @@ defmodule ToweropsWeb.Org.SettingsLivePropertyTest do user: user, organization: org } do - check all(port <- one_of([integer(-100..100_000), constant(0)]), max_runs: 15) do + check all(port <- one_of([integer(-100..100_000), constant(0)]), max_runs: 10) do {:ok, view, _html} = conn |> log_in_user(user) @@ -98,7 +98,7 @@ defmodule ToweropsWeb.Org.SettingsLivePropertyTest do user: user, organization: org } do - check all(community <- string(:printable, max_length: 100), max_runs: 15) do + check all(community <- string(:printable, max_length: 100), max_runs: 10) do {:ok, view, _html} = conn |> log_in_user(user)