From 1eb36697f094cac79e54e24a2385e4b2d0a80ab1 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Fri, 2 Sep 2022 22:52:40 -0400 Subject: [PATCH] Update test client for changes to server --- test-client/location.go | 2 +- test-client/main.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test-client/location.go b/test-client/location.go index 43b8faf..1853ac4 100644 --- a/test-client/location.go +++ b/test-client/location.go @@ -13,7 +13,7 @@ func doLocation(c pb.WeatherServiceClient) { LocationType: pb.LocationType_LOCATION_TYPE_CITY, Location: &pb.OneOfLocation{ LocationId: &pb.OneOfLocation_City{ - City: "Corvallis", + City: "Seattle", }, }, }) diff --git a/test-client/main.go b/test-client/main.go index 60503f2..ddec83e 100644 --- a/test-client/main.go +++ b/test-client/main.go @@ -18,7 +18,7 @@ func main() { c := pb.NewWeatherServiceClient(conn) - //doCurrent(c) + doCurrent(c) //doFiveDay(c) - doLocation(c) + //doLocation(c) }