summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/integration/components/view_driver.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/integration/components/view_driver.go b/pkg/integration/components/view_driver.go
index 4d8e75217..e40c0c5f1 100644
--- a/pkg/integration/components/view_driver.go
+++ b/pkg/integration/components/view_driver.go
@@ -565,7 +565,7 @@ func (self *ViewDriver) IsVisible() *ViewDriver {
func (self *ViewDriver) IsInvisible() *ViewDriver {
self.t.assertWithRetries(func() (bool, string) {
- return !self.getView().Visible, fmt.Sprintf("%s: Expected view to be visible, but it was not", self.context)
+ return !self.getView().Visible, fmt.Sprintf("%s: Expected view to be invisible, but it was not", self.context)
})
return self