diff options
| author | Jędrzej Boczar <yendreij@gmail.com> | 2021-04-22 23:46:30 +0200 |
|---|---|---|
| committer | Kiyan <yazdani.kiyan@protonmail.com> | 2021-04-23 21:21:38 +0200 |
| commit | dbb1550aaf9223d85636b863468ba82d182c088b (patch) | |
| tree | 7c5d888034db464625d5372c12757f1846cbd651 /tests/indent/cpp_spec.lua | |
| parent | tests/indent: move the run helper functions to top-level (diff) | |
| download | nvim-treesitter-dbb1550aaf9223d85636b863468ba82d182c088b.tar nvim-treesitter-dbb1550aaf9223d85636b863468ba82d182c088b.tar.gz nvim-treesitter-dbb1550aaf9223d85636b863468ba82d182c088b.tar.bz2 nvim-treesitter-dbb1550aaf9223d85636b863468ba82d182c088b.tar.lz nvim-treesitter-dbb1550aaf9223d85636b863468ba82d182c088b.tar.xz nvim-treesitter-dbb1550aaf9223d85636b863468ba82d182c088b.tar.zst nvim-treesitter-dbb1550aaf9223d85636b863468ba82d182c088b.zip | |
tests/indent: move common code out of main lua/ directory
Diffstat (limited to 'tests/indent/cpp_spec.lua')
| -rw-r--r-- | tests/indent/cpp_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/indent/cpp_spec.lua b/tests/indent/cpp_spec.lua index 261c00499..b3a7e7454 100644 --- a/tests/indent/cpp_spec.lua +++ b/tests/indent/cpp_spec.lua @@ -1,5 +1,5 @@ -local whole_file = require('nvim-treesitter.test_utils').indent_whole_file -local new_line = require('nvim-treesitter.test_utils').indent_new_line +local whole_file = require('tests.indent.common').indent_whole_file +local new_line = require('tests.indent.common').indent_new_line local scan_dir = require('plenary.scandir').scan_dir local Path = require('plenary.path') |
