Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gcs/integration/gcs_public_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ var _ = Describe("GCS Public Bucket", func() {
session, err := RunGCSCLI(gcsCLIPath, publicEnv.ConfigPath, storageType, "get", setupEnv.GCSFileName, "/dev/null")
Expect(err).ToNot(HaveOccurred())
Expect(session.ExitCode()).ToNot(BeZero())
Expect(session.Err.Contents()).To(MatchRegexp("Object does not exist in bucket"))
Expect(string(session.Err.Contents())).To(MatchRegexp("object doesn't exist"))
})

It("fails to put", func() {
Expand Down
Loading