Skip to content

Commit

Permalink
Removed unnecessary import and increased timeout value generator.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgerdes committed Aug 19, 2013
1 parent c3e4a22 commit b1d0824
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/webdrv_eqc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

-include_lib("eqc/include/eqc.hrl").
-include_lib("eqc/include/eqc_statem.hrl").
-import(eqc_statem, [eq/2]).

-compile(export_all).

Expand All @@ -54,7 +53,7 @@
[{2, {selenium, htmlunit}},
{1, {selenium, chrome}},
{1, {selenium, firefox}},
{1, {chromedriver, chrome}} ]).
{1, {chromedriver, chrome}}]).

-define(WINDOWBASE, "WINDOW-").
-define(SESSIONBASE, "SESS-").
Expand Down Expand Up @@ -206,7 +205,7 @@ which_timeout() ->
elements(["script", "implicit", "page load"]).

timeout_val() ->
choose(100, 500).
choose(100, 10000).

implicit_timeout_val() ->
weighted_default({3, 0}, {1, choose(1, 30)}).
Expand Down

0 comments on commit b1d0824

Please sign in to comment.