From d6d292ed9a37b26685863e6b2b84983370f9f0a6 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Mon, 4 Mar 2024 08:26:11 +0530 Subject: [PATCH] fix: Update Test Expectations --- server/__tests__/sample.test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server/__tests__/sample.test.js b/server/__tests__/sample.test.js index efcae38..1ae4f3f 100644 --- a/server/__tests__/sample.test.js +++ b/server/__tests__/sample.test.js @@ -83,10 +83,10 @@ describe('POST /city/batch', () => { countryCode: "", region: "IL", regionName: "Illinois", - city: "Geneva", - zip: "60134", - lat: 41.8847, - lon: -88.3028, + city: "Sugar Grove", + zip: "60554", + lat: 41.7776, + lon: -88.4293, timezone: "America/Chicago", proxy: false, hosting: false, @@ -178,4 +178,4 @@ describe('GET /location/:locationlevel/centroid', () => { const response = await fetch(`${BASE_URL}/location/DISTRICT/centroid?query=lalaland`); expect(response.status).toBe(404); }) -}); \ No newline at end of file +});