diff options
author | Raphael <glephunter@gmail.com> | 2022-12-29 07:20:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-29 07:20:42 +0800 |
commit | d0dd8d11bf596b9310afd465a723696ac348d83a (patch) | |
tree | 33af71bd80dd0b2961abd53cd5b05ad6ba309905 | |
parent | 7067cde6576b19f6ea910a505f049b3c746c115c (diff) | |
download | rneovim-d0dd8d11bf596b9310afd465a723696ac348d83a.tar.gz rneovim-d0dd8d11bf596b9310afd465a723696ac348d83a.tar.bz2 rneovim-d0dd8d11bf596b9310afd465a723696ac348d83a.zip |
test: remove unused variable (#21552)
-rw-r--r-- | test/functional/preload.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/preload.lua b/test/functional/preload.lua index e225854de3..6a5a2e907e 100644 --- a/test/functional/preload.lua +++ b/test/functional/preload.lua @@ -2,7 +2,7 @@ -- Busted started doing this to help provide more isolation. See issue #62 -- for more information about this. local helpers = require('test.functional.helpers')(nil) -local screen = require('test.functional.ui.screen') +require('test.functional.ui.screen') local busted = require("busted") local is_os = helpers.is_os |