You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ra...@apache.org on 2019/01/03 10:25:30 UTC

[tomee] 01/02: when asking for counter value it will return only the value.

This is an automated email from the ASF dual-hosted git repository.

radcortez pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit a00a9d881026538691c29944e3536acf6d3956c9
Author: Doychin Bondzhev <do...@dsoft-bg.com>
AuthorDate: Wed Jan 2 14:37:13 2019 +0200

    when asking for counter value it will return only the value.
---
 .../src/test/java/org/superbiz/rest/WeatherServiceTest.java              | 1 +
 1 file changed, 1 insertion(+)

diff --git a/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java b/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java
index 73624af..3e68b7a 100644
--- a/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java
+++ b/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java
@@ -97,6 +97,7 @@ public class WeatherServiceTest {
                 .request()
                 .accept(MediaType.APPLICATION_JSON)
                 .get(String.class);
+
         assertEquals("{\"weather_day_status\":1}", metric);
     }