Skip to content

Commit

Permalink
resources: Fix typos in error message and variables
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear authored and bep committed Mar 20, 2023
1 parent b0b1b76 commit 891b291
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions resources/image_test.go
Expand Up @@ -235,20 +235,20 @@ func TestImagePermalinkPublishOrder(t *testing.T) {
assertImageFile(c, spec.PublishFs, "a/sunset.jpg", 900, 562)
}

orignal := fetchImageForSpec(spec, c, "sunset.jpg")
c.Assert(orignal, qt.Not(qt.IsNil))
original := fetchImageForSpec(spec, c, "sunset.jpg")
c.Assert(original, qt.Not(qt.IsNil))

if checkOriginalFirst {
check2(orignal)
check2(original)
}

resized, err := orignal.Resize("100x50")
resized, err := original.Resize("100x50")
c.Assert(err, qt.IsNil)

check1(resized.(images.ImageResource))

if !checkOriginalFirst {
check2(orignal)
check2(original)
}
})
}
Expand Down
Expand Up @@ -34,7 +34,7 @@ type Client struct {
// New creates a new Client with the given specification.
func New(rs *resources.Spec, t tpl.TemplatesProvider) *Client {
if rs == nil {
panic("must provice a resource Spec")
panic("must provide a resource Spec")
}
if t == nil {
panic("must provide a template provider")
Expand Down

0 comments on commit 891b291

Please sign in to comment.