[Non-ACR][Maps]change distance to get place list 60/265660/3
authorChakradhar Pogiri <v.pogiri@samsung.com>
Tue, 26 Oct 2021 12:37:55 +0000 (18:07 +0530)
committerchakradhar pogiri <v.pogiri@samsung.com>
Wed, 27 Oct 2021 03:23:36 +0000 (03:23 +0000)
Change-Id: I2c9abbccba2d8e8c3772d8ff51affa65a0829825

tct-suite-vs/Tizen.Maps.Tests/testcase/TSMapServiceRequestTemplate.cs

index da0eaae..e8f577a 100755 (executable)
@@ -210,7 +210,7 @@ namespace Tizen.Maps.Tests
                     Assert.IsNotNull(maps, "Expect not null map service.");
                     if (maps.IsSupported(ServiceRequestType.SearchPlace) == false) continue;
 
-                    var request = maps.CreatePlaceSearchRequest(new Geocoordinates(48.85784, 2.29516), 50);
+                    var request = maps.CreatePlaceSearchRequest(new Geocoordinates(48.85784, 2.29516), 100);
                     var response = await request.GetResponseAsync();
                     Assert.IsNotNull(response, "Expecting not null response");
                     Assert.IsInstanceOf<IEnumerable<Place>>(response, string.Format("Expecting: IEnumerable<Place>, Actual: {0}", response.GetType().ToString()));