modify add resource test to accomodate changes

This commit is contained in:
Yigit Demirbas
2023-09-27 12:49:19 +02:00
parent 039b05fb16
commit cb5b241715

View File

@@ -103,5 +103,5 @@ func TestAddResourceFileNotFound(t *testing.T) {
args := []string{resourceFileName}
err := cmd.RunE(cmd, args)
assert.EqualError(t, err, resourceFileName+" has no match: must build at directory: not a valid directory: '"+resourceFileName+"' doesn't exist")
assert.EqualError(t, err, "pattern "+resourceFileName+" has no match: must build at directory: not a valid directory: '"+resourceFileName+"' doesn't exist")
}