This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 67c45a7 Fixed some Camel-weather integration tests
67c45a7 is described below
commit 67c45a7a683971dd444eb10e625897db61906bb3
Author: Andrea Cosentino <ancosen@gmail.com>
AuthorDate: Mon Sep 17 10:01:30 2018 +0200
Fixed some Camel-weather integration tests
---
.../apache/camel/component/weather/CurrentWeatherConsumerHtmlTest.java | 2 +-
.../camel/component/weather/CurrentWeatherMadridProducerTest.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherConsumerHtmlTest.java
b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherConsumerHtmlTest.java
index 8e5317d..8e43eb9 100644
--- a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherConsumerHtmlTest.java
+++ b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherConsumerHtmlTest.java
@@ -35,7 +35,7 @@ public class CurrentWeatherConsumerHtmlTest extends BaseWeatherConsumerTest
{
return new RouteBuilder() {
@Override
public void configure() throws Exception {
- from("weather:foo?mode=HTML&appid=9162755b2efa555823cfe0451d7fff38&geolocationAccessKey=test&geolocationRequestHostIP=test").to("mock:result");
+ from("weather:foo?mode=HTML&appid=9162755b2efa555823cfe0451d7fff38&geolocationAccessKey=test&geolocationRequestHostIP=test&location=Rome").to("mock:result");
}
};
}
diff --git a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
index 787dff9..444a04f 100644
--- a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
+++ b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
@@ -68,7 +68,7 @@ public class CurrentWeatherMadridProducerTest extends BaseWeatherConsumerTest
{
// as the default delay option is one hour long, we expect exactly one message exchange
mock.expectedMessageCount(1);
- template.sendBodyAndHeader("direct:start", "Hello World", WeatherConstants.WEATHER_LOCATION,
"current");
+ template.sendBodyAndHeader("direct:start", "Hello World", WeatherConstants.WEATHER_LOCATION,
"Rome,Italy");
mock.assertIsSatisfied();
|