summaryrefslogtreecommitdiffstats
path: root/pkg/integration/components/test_driver.go
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2024-04-20 13:49:43 +0200
committerGitHub <noreply@github.com>2024-04-20 13:49:43 +0200
commit580818e935e19a67f7fe1bbb148224a95781879c (patch)
tree3d6a7067c79dd51435329a6aaebcb38538fd0826 /pkg/integration/components/test_driver.go
parent34f8f7293c5c901461a26f09839ebe5f0dd79869 (diff)
parent1c098ff82a07728a98abee3fd388e0b3c52fc6e8 (diff)
pkg: fix some typos (#3364)
Diffstat (limited to 'pkg/integration/components/test_driver.go')
-rw-r--r--pkg/integration/components/test_driver.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/integration/components/test_driver.go b/pkg/integration/components/test_driver.go
index d266dfb73..a1775239c 100644
--- a/pkg/integration/components/test_driver.go
+++ b/pkg/integration/components/test_driver.go
@@ -121,7 +121,7 @@ func (self *TestDriver) ExpectClipboard(matcher *TextMatcher) {
self.assertWithRetries(func() (bool, string) {
text, err := clipboard.ReadAll()
if err != nil {
- return false, "Error occured when reading from clipboard: " + err.Error()
+ return false, "Error occurred when reading from clipboard: " + err.Error()
}
ok, _ := matcher.test(text)
return ok, fmt.Sprintf("Expected clipboard to match %s, but got %s", matcher.name(), text)