From 8af424fc4cd80750a8300ff3e40689260522fe86 Mon Sep 17 00:00:00 2001 From: Nelson Elhage Date: Mon, 26 May 2014 13:13:56 -0700 Subject: [PATCH] tests: Don't generate binary output from checks. The tests will end up logging the check output, and spewing random binary all over a terminal never results in anything good. --- command/agent/check_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent/check_test.go b/command/agent/check_test.go index 07b4f598d7..19e087c67e 100644 --- a/command/agent/check_test.go +++ b/command/agent/check_test.go @@ -74,7 +74,7 @@ func TestCheckMonitor_LimitOutput(t *testing.T) { check := &CheckMonitor{ Notify: mock, CheckID: "foo", - Script: "dd if=/dev/urandom bs=8192 count=10", + Script: "od -N 81920 /dev/urandom", Interval: 25 * time.Millisecond, Logger: log.New(os.Stderr, "", log.LstdFlags), }