From a1e345459a6098e6020a71cde4051d66906de79f Mon Sep 17 00:00:00 2001 From: ingalls Date: Fri, 6 Dec 2024 08:39:54 -0700 Subject: [PATCH] Update Error message in tests --- api/test/basemap.srv.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/test/basemap.srv.test.ts b/api/test/basemap.srv.test.ts index ab8621dde..2d762b4f1 100644 --- a/api/test/basemap.srv.test.ts +++ b/api/test/basemap.srv.test.ts @@ -84,7 +84,7 @@ test('POST: api/basemap - Invalid URL - No Variables', async (t) => { t.fail() } catch (err) { - t.equals(String(err), 'AssertionError [ERR_ASSERTION]: {"status":400,"message":"Either ZXY or Quadkey variables must be used","messages":[]}'); + t.equals(String(err), 'AssertionError [ERR_ASSERTION]: {"status":400,"message":"Either ZXY, Quadkey variables OR ESRI FeatureServer must be used","messages":[]}'); } t.end();