This is an automated email from the ASF dual-hosted git repository.
heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-client.git
The following commit(s) were added to refs/heads/master by this push:
new 3c24be2 fix api change
3c24be2 is described below
commit 3c24be22b795a603345c6a5f3ec99fa321daab21
Author: Alex Heneveld <[email protected]>
AuthorDate: Fri Aug 6 20:06:34 2021 +0100
fix api change
---
.../apache/brooklyn/rest/client/ApplicationResourceIntegrationTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/java/src/test/java/org/apache/brooklyn/rest/client/ApplicationResourceIntegrationTest.java
b/java/src/test/java/org/apache/brooklyn/rest/client/ApplicationResourceIntegrationTest.java
index ea26a10..4093f1d 100644
---
a/java/src/test/java/org/apache/brooklyn/rest/client/ApplicationResourceIntegrationTest.java
+++
b/java/src/test/java/org/apache/brooklyn/rest/client/ApplicationResourceIntegrationTest.java
@@ -166,7 +166,7 @@ public class ApplicationResourceIntegrationTest {
Asserts.succeedsEventually(ImmutableMap.of("timeout", timeout), new
Runnable() {
@Override
public void run() {
- Object status = api.getSensorApi().get(app, entity,
"service.state", false);
+ Object status = api.getSensorApi().get(app, entity,
"service.state", false, false);
assertTrue(state.toString().equalsIgnoreCase(status.toString()),
"status="+status);
}});
}