We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c5875 commit 1cc4525Copy full SHA for 1cc4525
pkg/utils/base64_test.go
@@ -26,7 +26,7 @@ var _ = Describe("utils/base64 tests", func() {
26
b64, err := GetContentURIAsBase64(input)
27
Expect(b64).To(Equal(""))
28
Expect(err).ToNot(BeNil())
29
- Expect(err).To(MatchError("not valid string"))
+ Expect(err).To(MatchError("not valid base64 data type string"))
30
})
31
It("GetImageURLAsBase64 can actually download images and calculates something", func() {
32
// This test doesn't actually _check_ the results at this time, which is bad, but there wasn't a test at all before...
0 commit comments