From 019104449b56686095d018db754b3e84f4eda969 Mon Sep 17 00:00:00 2001 From: Andrey Ivanov Date: Tue, 11 Aug 2020 11:24:21 +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 1d55b01..233736e 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{"ll"}, Environment{"E1": "val1"}) + code := RunCmd([]string{"ls"}, Environment{"E1": "val1"}) require.Equal(t, code, 0) }) }