From ea65c302e250f6d634a2de2b9d44ab49c7e8c5a7 Mon Sep 17 00:00:00 2001 From: Andrey Ivanov Date: Tue, 11 Aug 2020 11:22:13 +0300 Subject: [PATCH] HW8 is completed --- hw08_envdir_tool/executor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw08_envdir_tool/executor_test.go b/hw08_envdir_tool/executor_test.go index c54d629..1d55b01 100644 --- a/hw08_envdir_tool/executor_test.go +++ b/hw08_envdir_tool/executor_test.go @@ -11,7 +11,7 @@ func TestRunCmd(t *testing.T) { require.Equal(t, code, -1) }) t.Run("Команда выполнилась", func(t *testing.T) { - code := RunCmd([]string{"cmd"}, Environment{"E1": "val1"}) + code := RunCmd([]string{"ll"}, Environment{"E1": "val1"}) require.Equal(t, code, 0) }) }