Updated Branches: refs/heads/master 0ff9749ad -> e264ebd19
Added a log statement. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/e264ebd1 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e264ebd1 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e264ebd1 Branch: refs/heads/master Commit: e264ebd19c29ef1d04b1ff4afc653cc50755047f Parents: 0ff9749 Author: Babak Vahdat <bvah...@apache.org> Authored: Wed May 29 22:13:13 2013 +0200 Committer: Babak Vahdat <bvah...@apache.org> Committed: Wed May 29 22:13:13 2013 +0200 ---------------------------------------------------------------------- .../component/weather/BaseWeatherConsumerTest.java | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/e264ebd1/components/camel-weather/src/test/java/org/apache/camel/component/weather/BaseWeatherConsumerTest.java ---------------------------------------------------------------------- diff --git a/components/camel-weather/src/test/java/org/apache/camel/component/weather/BaseWeatherConsumerTest.java b/components/camel-weather/src/test/java/org/apache/camel/component/weather/BaseWeatherConsumerTest.java index d10f8c3..7345b3c 100644 --- a/components/camel-weather/src/test/java/org/apache/camel/component/weather/BaseWeatherConsumerTest.java +++ b/components/camel-weather/src/test/java/org/apache/camel/component/weather/BaseWeatherConsumerTest.java @@ -26,6 +26,8 @@ public abstract class BaseWeatherConsumerTest extends CamelTestSupport { protected void checkWeatherContent(String weather) { // the default mode is json + log.debug("The weather in {} format is {}{}", new Object[] {WeatherMode.JSON, LS, weather}); + assertStringContains(weather, "\"coord\":{"); assertStringContains(weather, "temp"); }