Skip to content

Commit

Permalink
Fix test validation strings
Browse files Browse the repository at this point in the history
Signed-off-by: Supratik Das <rick.das08@gmail.com>
  • Loading branch information
supra08 committed Apr 1, 2020
1 parent 710d069 commit bfaa27a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/config_reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ url = "noop-buildpack.tgz"

it("returns errors when 'uri' is misspelled as 'url'", func() {
_, _, err := builder.ReadConfig(builderConfigPath)
h.AssertError(t, err, "parse contents of")
h.AssertError(t, err, "unknown configuration elements 'buildpack'")
})
})
when("'buildpack' is misspelled", func() {
Expand All @@ -131,7 +131,7 @@ uri = "noop-buildpack.tgz"

it("returns errors when 'buildpack' is misspelled as 'buidlpack'", func() {
_, _, err := builder.ReadConfig(builderConfigPath)
h.AssertError(t, err, "parse contents of")
h.AssertError(t, err, "unknown configuration elements 'buidlpack'")
})
})
})
Expand Down

0 comments on commit bfaa27a

Please sign in to comment.