HW8 is completed

pull/8/head
Andrey Ivanov 2020-08-11 11:24:21 +03:00 committed by Andrey Ivanov
parent ea65c302e2
commit 019104449b
1 changed files with 1 additions and 1 deletions

View File

@ -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)
})
}