From d4257ecaa97287139d457dc586d5eb5cfb69e61e Mon Sep 17 00:00:00 2001 From: Rayat M Rahman <22646419+riotrah@users.noreply.github.com> Date: Sun, 31 Mar 2024 15:08:06 -0700 Subject: [PATCH] fix missing commands-tests import --- src/extension-test/unit/paredit/commands-test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension-test/unit/paredit/commands-test.ts b/src/extension-test/unit/paredit/commands-test.ts index a9461c67a..47bf47cba 100644 --- a/src/extension-test/unit/paredit/commands-test.ts +++ b/src/extension-test/unit/paredit/commands-test.ts @@ -1,7 +1,7 @@ import * as expect from 'expect'; import * as model from '../../../cursor-doc/model'; import * as handlers from '../../../paredit/commands'; -import { docFromTextNotation } from '../common/text-notation'; +import { docFromTextNotation, textNotationFromDoc } from '../common/text-notation'; import _ = require('lodash'); model.initScanner(20000);