Fix a typo

Update LineInOuputContains to LineInOutputContains.

Signed-off-by: Yiqiao Pu <ypu@redhat.com>

Closes: #642
Approved by: rhatdan
This commit is contained in:
Yiqiao Pu
2018-04-19 16:33:29 +08:00
committed by Atomic Bot
parent cc7d1de1c1
commit 6a9dbf3305
4 changed files with 7 additions and 7 deletions

View File

@ -487,7 +487,7 @@ func (s *PodmanSession) LineInOuputStartsWith(term string) bool {
//LineInOutputContains returns true if a line in a
// session output starts with the supplied string
func (s *PodmanSession) LineInOuputContains(term string) bool {
func (s *PodmanSession) LineInOutputContains(term string) bool {
for _, i := range s.OutputToStringArray() {
if strings.Contains(i, term) {
return true