From 0bf6b173f422079c3c655d0540ee71a827e17303 Mon Sep 17 00:00:00 2001 From: Eric NGUYEN Date: Wed, 3 Aug 2022 15:16:54 +0200 Subject: [PATCH] http.js: Fix wrong pathname for SplitRemplissage --- test-server/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-server/http.js b/test-server/http.js index 04eed05..752a85c 100644 --- a/test-server/http.js +++ b/test-server/http.js @@ -12,7 +12,7 @@ serve({ json = JSON.stringify(GetSVGLayoutConfiguration()); } else if (url.pathname === 'FillHoleWithChassis') { json = JSON.stringify(FillHoleWithChassis(request)); - } else if (url.pathname === 'FillHoleWithChassis') { + } else if (url.pathname === 'SplitRemplissage') { json = JSON.stringify(SplitRemplissage(request)); } else { // TODO: Return 404 rather than this