diff options
author | cdoern <cdoern@redhat.com> | 2021-08-09 10:07:46 -0400 |
---|---|---|
committer | cdoern <cdoern@redhat.com> | 2021-08-23 12:51:56 -0400 |
commit | d06d285e66251784126b4f19e047c2a93182d08e (patch) | |
tree | 1a1078cc0bca1f2c9fb864dd268c4644e381b8a7 /pkg/util/utils_test.go | |
parent | 04ab2b16617fe2d3178eb0b461aacbcab609611e (diff) | |
download | podman-d06d285e66251784126b4f19e047c2a93182d08e.tar.gz podman-d06d285e66251784126b4f19e047c2a93182d08e.tar.bz2 podman-d06d285e66251784126b4f19e047c2a93182d08e.zip |
logFile until flag issue
we were adding a negative duration in podman events, causing inputs like
-5s to be correct and 5s to be incorrect.
fixes #11158
Signed-off-by: cdoern <cdoern@redhat.com>
Diffstat (limited to 'pkg/util/utils_test.go')
-rw-r--r-- | pkg/util/utils_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/util/utils_test.go b/pkg/util/utils_test.go index 027acbdab..35322c7ea 100644 --- a/pkg/util/utils_test.go +++ b/pkg/util/utils_test.go @@ -280,7 +280,7 @@ func TestPeriodAndQuotaToCores(t *testing.T) { } func TestParseInputTime(t *testing.T) { - tm, err := ParseInputTime("1.5") + tm, err := ParseInputTime("1.5", true) if err != nil { t.Errorf("expected error to be nil but was: %v", err) } |