]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/lei-daemon.t
lei: dump errors to syslog, and not to CLI
[public-inbox.git] / t / lei-daemon.t
index a7c4b7992a378e83aadf7548fe49dd8cde6fd9a2..b0c94a8745286fa0c5cf787785c6690862be332e 100644 (file)
@@ -21,14 +21,9 @@ test_lei({ daemon_only => 1 }, sub {
        ok(kill(0, $pid), 'pid is valid');
        ok(-S $sock, 'sock created');
        is(-s $err_log, 0, 'nothing in errors.log');
-       open my $efh, '>>', $err_log or BAIL_OUT $!;
-       print $efh "phail\n" or BAIL_OUT $!;
-       close $efh or BAIL_OUT $!;
-
        lei_ok('daemon-pid');
        chomp(my $pid_again = $lei_out);
        is($pid, $pid_again, 'daemon-pid idempotent');
-       like($lei_err, qr/phail/, 'got mock "phail" error previous run');
 
        SKIP: {
                skip 'only testing open files on Linux', 1 if $^O ne 'linux';