Skip to content

Commit

Permalink
fix: update tests for new norg parser
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Jan 4, 2023
1 parent ea1160b commit 490b574
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/treesitter/norg_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ describe("treesitter neorg", function()
level = 0,
lnum = 1,
col = 0,
end_lnum = 3,
end_col = 20,
end_lnum = 4,
end_col = 0,
children = {
{
kind = "Interface",
name = "Level 2 header",
level = 1,
lnum = 2,
col = 1,
end_lnum = 3,
end_col = 20,
end_lnum = 4,
end_col = 0,
children = {
{
kind = "Interface",
name = "Level 3 header",
level = 2,
lnum = 3,
col = 2,
end_lnum = 3,
end_col = 20,
end_lnum = 4,
end_col = 0,
},
},
},
Expand Down

0 comments on commit 490b574

Please sign in to comment.