Commit af73083de11452b832c2e2c55bb726fe65a9707b

Authored by Luciano Borges
2 parents c7983aa5 a0af210f
Exists in master

Merge branch '2.5' of https://github.com/demoiselle/framework.git into 2.5

archetype/html-rest/src/main/resources/archetype-resources/src/test/java/rest/BookmarkRESTTest.java
... ... @@ -52,7 +52,7 @@ public class BookmarkRESTTest {
52 52 client = HttpClientBuilder.create().build();
53 53 mapper = new ObjectMapper();
54 54  
55   - Configuration config = new PropertiesConfiguration("demoiselle.properties");
  55 + Configuration config = new PropertiesConfiguration("test.properties");
56 56 url = config.getString("services.url");
57 57 }
58 58  
... ...
archetype/html-rest/src/main/resources/archetype-resources/src/test/resources/demoiselle.properties
... ... @@ -1 +0,0 @@
1   -services.url=http://localhost:8080/${artifactId}/api
archetype/html-rest/src/main/resources/archetype-resources/src/test/resources/test.properties 0 → 100644
... ... @@ -0,0 +1 @@
  1 +services.url=http://localhost:8080/${artifactId}/api
... ...