Skip to content

Commit 08ce53f

Browse files
committed
refactor: remove print statements in test
1 parent 144bb7c commit 08ce53f

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/core/positions_discoverer_spec.lua

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ describe("PositionsDiscoverer", function()
4747
--- @type neotest.Tree
4848
local result = assert(plugin.discover_positions(file_path))
4949

50-
print(vim.inspect(result:to_list()))
51-
5250
eq({
5351
{
5452
id = file_path,
@@ -138,7 +136,6 @@ class Test {
138136

139137
-- then
140138
local actual_list = actual:to_list()
141-
print(vim.inspect(actual_list))
142139

143140
eq({
144141
{
@@ -200,8 +197,6 @@ public class SomeTest {
200197
-- when
201198
local actual = assert(plugin.discover_positions(file_path))
202199

203-
print(vim.inspect(actual:to_list()))
204-
205200
eq({
206201
{
207202
id = file_path,
@@ -282,7 +277,6 @@ public class SomeTest {
282277

283278
local tree = assert(plugin.discover_positions(filepath))
284279

285-
print(vim.inspect(tree:to_list()))
286280
eq({
287281
{
288282
id = filepath,
@@ -336,7 +330,6 @@ public class SomeTest {
336330

337331
local tree = assert(plugin.discover_positions(filepath))
338332

339-
print(vim.inspect(tree:to_list()))
340333
eq({
341334
{
342335
id = filepath,
@@ -412,8 +405,6 @@ public class SomeTest {
412405
local list = tree:to_list()
413406
strip_ranges(list)
414407

415-
print(vim.inspect(list))
416-
417408
eq({
418409
{
419410
id = filepath,

0 commit comments

Comments
 (0)