diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-12-21 12:09:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-21 12:09:46 -0800 |
commit | fe186c6ebba95db89463f38c6aa0f0dcc104a249 (patch) | |
tree | d2a815c62bae205b0ea80ac72ec72542c98131ce /test | |
parent | fa568e04d6b6032ca3bdf39ee4fd1ca1856be85a (diff) | |
parent | 1ad6f9af1552cbe2119af6cda83db5b3908556db (diff) | |
download | podman-fe186c6ebba95db89463f38c6aa0f0dcc104a249.tar.gz podman-fe186c6ebba95db89463f38c6aa0f0dcc104a249.tar.bz2 podman-fe186c6ebba95db89463f38c6aa0f0dcc104a249.zip |
Merge pull request #2033 from rhatdan/devices
Allow users to specify a directory for additonal devices
Diffstat (limited to 'test')
-rw-r--r-- | test/utils/common_function_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/common_function_test.go b/test/utils/common_function_test.go index 1648a4899..98cb43188 100644 --- a/test/utils/common_function_test.go +++ b/test/utils/common_function_test.go @@ -36,7 +36,7 @@ var _ = Describe("Common functions test", func() { It("Test SystemExec", func() { session := SystemExec(GoechoPath, []string{}) - Expect(session.Command.Process).ShouldNot(BeNil(), "SystemExec can not start a process") + Expect(session.Command.Process).ShouldNot(BeNil(), "SystemExec cannot start a process") }) It("Test StringInSlice", func() { |