From ca177b4c8a68e698f06f286df1961128f0e5c4d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3n=C3=A1n=20Carrigan?= Date: Sun, 13 Mar 2022 14:55:06 +0000 Subject: [PATCH] feat: use neotest async --- lua/neotest-python/base.lua | 2 +- lua/neotest-python/init.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/neotest-python/base.lua b/lua/neotest-python/base.lua index 064d46e..4f9f6fb 100644 --- a/lua/neotest-python/base.lua +++ b/lua/neotest-python/base.lua @@ -1,4 +1,4 @@ -local async = require("plenary.async") +local async = require("neotest.async") local lib = require("neotest.lib") local Path = require("plenary.path") diff --git a/lua/neotest-python/init.lua b/lua/neotest-python/init.lua index f4cc5fc..fbaefdc 100644 --- a/lua/neotest-python/init.lua +++ b/lua/neotest-python/init.lua @@ -1,4 +1,4 @@ -local async = require("plenary.async") +local async = require("neotest.async") local Path = require("plenary.path") local lib = require("neotest.lib") local base = require("neotest-python.base")