Skip to content

Commit

Permalink
Update base64_test.go
Browse files Browse the repository at this point in the history
copy paste error
  • Loading branch information
dave-gray101 committed May 7, 2024
1 parent 38894ad commit eb81bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/utils/base64_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var _ = Describe("utils/base64 tests", func() {
input := "data:image/png;base64,BAR"
b64, err := GetImageURLAsBase64(input)
Expect(err).To(BeNil())
Expect(b64).To(Equal("FOO"))
Expect(b64).To(Equal("BAR"))
})
It("GetImageURLAsBase64 returns an error for bogus data", func() {
input := "FOO"
Expand Down

0 comments on commit eb81bcc

Please sign in to comment.