Skip to content

Commit de93d49

Browse files
committed
Fixed integration test
Fail if a library.properties does not exist.
1 parent 8555811 commit de93d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: internal/project/library/libraryproperties/libraryproperties.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828

2929
// Properties parses the library.properties from the given path and returns the data.
3030
func Properties(libraryPath *paths.Path) (*properties.Map, error) {
31-
return properties.SafeLoadFromPath(libraryPath.Join("library.properties"))
31+
return properties.LoadFromPath(libraryPath.Join("library.properties"))
3232
}
3333

3434
var schemaObject = make(map[compliancelevel.Type]schema.Schema)

0 commit comments

Comments
 (0)