From 6f0965898d74eefd6613ea768db630334e577728 Mon Sep 17 00:00:00 2001 From: Sajjad Anwar Date: Mon, 27 Apr 2020 19:18:03 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=A6=E2=80=8D=E2=99=80=EF=B8=8F=20fix?= =?UTF-8?q?=20incorrect=20import?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __tests__/utils/nearest.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/utils/nearest.test.js b/__tests__/utils/nearest.test.js index eeb00bfed..4e8830b51 100644 --- a/__tests__/utils/nearest.test.js +++ b/__tests__/utils/nearest.test.js @@ -4,8 +4,8 @@ import fs from 'fs' import path from 'path' -import { findNearest } from '../../app/utils/nearest' -import { findNearestPoint, addNodes } from '../../app/services/nodecache' +import { findNearestPoint, findNearest } from '../../app/utils/nearest' +import { addNodes } from '../../app/services/nodecache' test('find nearest features for a node', async () => { const features = JSON.parse(fs.readFileSync(path.join(__dirname, '../fixtures/osm-geojson-dc.geojson'), { 'encoding': 'utf-8' }))