#458 - Support use of test-ebean.properties without an existing ebean.properties

This commit is contained in:
Robin Bygrave
2015-11-12 10:17:30 +13:00
parent 29ca678f01
commit 42e7103aa6
@@ -39,7 +39,7 @@ final class PropertyMapLoader {
PropertyMap map = load(null, fileName);
if (loadTestProperties) {
// load test properties if present in classpath
load(map, "test-ebean.properties");
map = load(map, "test-ebean.properties");
}
return map;
}