diff --git a/test/capabilities-test.fnl b/test/capabilities-test.fnl index 521445a..fbeaf88 100644 --- a/test/capabilities-test.fnl +++ b/test/capabilities-test.fnl @@ -4,7 +4,7 @@ (local is (require :test.is)) (local {: ROOT-URI : ROOT-PATH - : create-client} (require :test.mock-client)) + : create-client} (require :test.client)) (fn default [tbl field value] (when (= nil (. tbl field)) diff --git a/test/mock-client.fnl b/test/client.fnl similarity index 100% rename from test/mock-client.fnl rename to test/client.fnl diff --git a/test/completion-test.fnl b/test/completion-test.fnl index c6fd48d..16ae6af 100644 --- a/test/completion-test.fnl +++ b/test/completion-test.fnl @@ -3,7 +3,7 @@ (local {: view} (require :fennel)) (local {: ROOT-URI - : create-client} (require :test.mock-client)) + : create-client} (require :test.client)) (local filename (.. ROOT-URI "/imaginary-file.fnl")) diff --git a/test/diagnostic-test.fnl b/test/diagnostic-test.fnl index 5b4abe0..0f99379 100644 --- a/test/diagnostic-test.fnl +++ b/test/diagnostic-test.fnl @@ -3,7 +3,7 @@ (local {: view} (require :fennel)) (local {: ROOT-URI - : create-client} (require :test.mock-client)) + : create-client} (require :test.client)) (macro find [t body ?should-be-nil] (assert-compile (= nil ?should-be-nil) "you can only have one thing here, put a `(do)`") diff --git a/test/goto-definition-test.fnl b/test/goto-definition-test.fnl index 3d34f29..830587c 100644 --- a/test/goto-definition-test.fnl +++ b/test/goto-definition-test.fnl @@ -4,7 +4,7 @@ (local is (require :test.is)) (local {: ROOT-URI - : create-client} (require :test.mock-client)) + : create-client} (require :test.client)) (describe "jump to definition" diff --git a/test/hover-test.fnl b/test/hover-test.fnl index 192bbbf..455584f 100644 --- a/test/hover-test.fnl +++ b/test/hover-test.fnl @@ -3,7 +3,7 @@ (local {: view} (require :fennel)) (local {: ROOT-URI - : create-client} (require :test.mock-client)) + : create-client} (require :test.client)) (describe "hover" diff --git a/test/misc-test.fnl b/test/misc-test.fnl index 95a9291..bf8d531 100644 --- a/test/misc-test.fnl +++ b/test/misc-test.fnl @@ -4,7 +4,7 @@ (local {: view &as fennel} (require :fennel)) (local {: create-client : ROOT-URI} - (require :test.mock-client)) + (require :test.client)) (local language (require :fennel-ls.language)) (local utils (require :fennel-ls.utils)) diff --git a/test/references-test.fnl b/test/references-test.fnl index b7ee486..ebb5939 100644 --- a/test/references-test.fnl +++ b/test/references-test.fnl @@ -3,7 +3,7 @@ (local {: view} (require :fennel)) (local {: ROOT-URI - : create-client} (require :test.mock-client)) + : create-client} (require :test.client)) (local filename (.. ROOT-URI "/imaginary-file.fnl")) diff --git a/test/settings-test.fnl b/test/settings-test.fnl index d505af3..fe28944 100644 --- a/test/settings-test.fnl +++ b/test/settings-test.fnl @@ -3,7 +3,7 @@ (local {: view} (require :fennel)) (local {: ROOT-URI - : create-client} (require :test.mock-client)) + : create-client} (require :test.client)) (describe "settings" (it "can set the path"