diff options
Diffstat (limited to 'test/e2e/libpod_suite_test.go')
-rw-r--r-- | test/e2e/libpod_suite_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go index fa48334a3..170b24667 100644 --- a/test/e2e/libpod_suite_test.go +++ b/test/e2e/libpod_suite_test.go @@ -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 |