Skip to content

Commit

Permalink
test(exchange): fix marks
Browse files Browse the repository at this point in the history
  • Loading branch information
gbprod committed Jul 8, 2022
1 parent 683d3f9 commit 095e63e
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions spec/substitute/utils_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,23 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
row = 1,
row = 2,
col = 5,
},
},
}, {
regtype = "c",
marks = {
start = {
row = 2,
row = 3,
col = 0,
},
finish = {
row = 3,
row = 5,
col = 5,
},
},
Expand All @@ -73,23 +73,23 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
row = 1,
row = 2,
col = 5,
},
},
}, {
regtype = "c",
marks = {
start = {
row = 1,
row = 2,
col = 6,
},
finish = {
row = 3,
row = 5,
col = 5,
},
},
Expand All @@ -101,23 +101,23 @@ describe("Compare regions", function()
regtype = "l",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
row = 1,
row = 2,
col = 5,
},
},
}, {
regtype = "c",
marks = {
start = {
row = 2,
row = 3,
col = 6,
},
finish = {
row = 3,
row = 5,
col = 5,
},
},
Expand All @@ -131,23 +131,23 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 2,
row = 3,
col = 0,
},
finish = {
row = 3,
row = 5,
col = 5,
},
},
}, {
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
row = 1,
row = 2,
col = 5,
},
},
Expand All @@ -159,23 +159,23 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 1,
row = 2,
col = 6,
},
finish = {
row = 3,
row = 5,
col = 5,
},
},
}, {
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
row = 1,
row = 2,
col = 5,
},
},
Expand All @@ -187,23 +187,23 @@ describe("Compare regions", function()
regtype = "l",
marks = {
start = {
row = 2,
row = 3,
col = 6,
},
finish = {
row = 3,
row = 5,
col = 5,
},
},
}, {
regtype = "l",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
row = 1,
row = 2,
col = 5,
},
},
Expand All @@ -217,7 +217,7 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
Expand Down Expand Up @@ -245,23 +245,23 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 6,
},
finish = {
row = 2,
row = 3,
col = 4,
},
},
}, {
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 7,
},
finish = {
row = 2,
row = 3,
col = 3,
},
},
Expand All @@ -287,7 +287,7 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 0,
},
finish = {
Expand All @@ -303,7 +303,7 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 7,
},
finish = {
Expand All @@ -315,7 +315,7 @@ describe("Compare regions", function()
regtype = "c",
marks = {
start = {
row = 0,
row = 1,
col = 7,
},
finish = {
Expand Down Expand Up @@ -349,7 +349,7 @@ describe("Compare regions", function()
col = 0,
},
finish = {
row = 4,
row = 5,
col = 5,
},
},
Expand Down

0 comments on commit 095e63e

Please sign in to comment.