@@ -30,7 +30,7 @@ func TestParseHumanFormatter(t *testing.T) {
|
30 | 30 | tcs := []testCase{ |
31 | 31 | { |
32 | 32 | Name: "human-formatter-noerror", |
33 | | -Input: `2020-04-04T00:00:05+02:00 [DEBG][jobname][zfs.cmd][task$stack$span.stack]: command exited without error usertime_s="0.008445" cmd="zfs list -H -p -o name -r -t filesystem,volume" systemtime_s="0.033783" invocation="84" total_time_s="0.037828619"`, |
| 33 | +Input: `2020-04-04T00:00:05+02:00 [DEBG][jobname][zfs.cmd][task$stack$span.stack]: command exited with success usertime_s="0.008445" cmd="zfs list -H -p -o name -r -t filesystem,volume" systemtime_s="0.033783" invocation="84" total_time_s="0.037828619"`, |
34 | 34 | Expect: &RuntimeLine{ |
35 | 35 | Cmd: "zfs list -H -p -o name -r -t filesystem,volume", |
36 | 36 | TotalTime: secs("0.037828619"), |
@@ -54,7 +54,7 @@ func TestParseHumanFormatter(t *testing.T) {
|
54 | 54 | }, |
55 | 55 | { |
56 | 56 | Name: "from graylog", |
57 | | -Input: `2020-04-04T00:00:05+02:00 [DEBG][csnas][zfs.cmd][task$stack$span.stack]: command exited without error usertime_s="0" cmd="zfs send -i zroot/ezjail/synapse-12@zrepl_20200329_095518_000 zroot/ezjail/synapse-12@zrepl_20200329_102454_000" total_time_s="0.101598591" invocation="85" systemtime_s="0.041581"`, |
| 57 | +Input: `2020-04-04T00:00:05+02:00 [DEBG][csnas][zfs.cmd][task$stack$span.stack]: command exited with success usertime_s="0" cmd="zfs send -i zroot/ezjail/synapse-12@zrepl_20200329_095518_000 zroot/ezjail/synapse-12@zrepl_20200329_102454_000" total_time_s="0.101598591" invocation="85" systemtime_s="0.041581"`, |
58 | 58 | Expect: &RuntimeLine{ |
59 | 59 | Cmd: "zfs send -i zroot/ezjail/synapse-12@zrepl_20200329_095518_000 zroot/ezjail/synapse-12@zrepl_20200329_102454_000", |
60 | 60 | TotalTime: secs("0.101598591"), |
|