From d3b1ab2fd466960154cc60c2f63c09997f4066fb Mon Sep 17 00:00:00 2001 From: Aliaksandr Kazlou Date: Fri, 3 Aug 2018 14:54:03 +0300 Subject: [PATCH] #72 Fix failing tests --- config/config_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/config_test.go b/config/config_test.go index 3e0a276..eb90350 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -49,6 +49,11 @@ func TestReadConfig(t *testing.T) { Command: "tail -f -n %s logs/app.log", WorkingDir: "", }, + "logs-extra3": { + Name: "logs-extra3", + Command: "tail -f logs/app.log", + WorkingDir: "", + }, } if diff := deep.Equal(commands, expected); diff != nil { t.Error(diff)