X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_server.t;h=222098a7d8923d2acf0ead1d38fd9c6fc680a331;hb=ffc0b0d89b5926350cf41ea00c7e71e6546149a5;hp=5414fd1d56825d8afbd015e05c40946078a70c09;hpb=d5a8ec3cc9d3b850be74eccb609aaf055d3c4e4c;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_script_server.t b/t/aggregate/unit_core_script_server.t index 5414fd1..222098a 100644 --- a/t/aggregate/unit_core_script_server.t +++ b/t/aggregate/unit_core_script_server.t @@ -143,8 +143,13 @@ sub opthash { } sub restartopthash { - return { - follow_symlinks => 0, - @_, + my $opthash = opthash(@_); + my $val = { + application_name => 'TestAppToTestScripts', + port => '3000', + debug => undef, + host => undef, + %$opthash, }; + return $val; }