Skip to content

Commit

Permalink
Fix Tests and CI (xamarin#1644)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow authored Jan 19, 2021
1 parent 2ef3407 commit ee2ded0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DeviceTests/DeviceTests.Shared/Geocoding_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public async Task Get_Placemarks_Location(double latitude, double longitude)
}

[Theory]
[InlineData("Microsoft Building 25 Redmond WA USA")]
[InlineData("Redmond, WA, USA")]
public async Task Get_Locations(string address)
{
try
Expand Down
2 changes: 1 addition & 1 deletion Samples/Samples/ViewModel/GeocodingViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GeocodingViewModel : BaseViewModel
{
string lat = 47.67398.ToString();
string lon = (-122.121513).ToString();
string address = "Microsoft Building 25 Redmond WA USA";
string address = "Microsoft Building 25 Redmond WA";
string geocodeAddress;
string geocodePosition;

Expand Down

0 comments on commit ee2ded0

Please sign in to comment.