Fix test
Tomas Doran [Wed, 23 Feb 2011 00:46:13 +0000 (00:46 +0000)]
t/aggregate/unit_core_script_server.t

index 5414fd1..fce5045 100644 (file)
@@ -143,8 +143,16 @@ sub opthash {
 }
 
 sub restartopthash {
-    return {
-        follow_symlinks => 0,
-        @_,
+    my $opthash = opthash(@_);
+    my $val = {
+        application_name => 'TestAppToTestScripts',
+        port => '3000',
+        debug => undef,
+        host => undef,
+        %$opthash,
     };
+    delete $val->{fork};
+    delete $val->{background};
+    delete $val->{keepalive};
+    return $val;
 }