aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-03-24 13:26:20 -0600
committerBen Burdette <bburdette@gmail.com>2020-03-24 13:26:20 -0600
commit657c08c852ce94123984c475bc9d5f094f7d8d46 (patch)
tree45604fb049ec7efeaf3370683f04738fa257570b
parent0166e7ab6d1d4530e9d6d9562693a58ab54c36ba (diff)
fix column range
-rw-r--r--tests/errors/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/errors/main.cc b/tests/errors/main.cc
index 20dba046b..c2c4d0060 100644
--- a/tests/errors/main.cc
+++ b/tests/errors/main.cc
@@ -53,7 +53,7 @@ using namespace nix;
MkNixCode()
.nixFile("myfile.nix")
.errLine(MkErrLine().lineNumber(40)
- .columnRange(50,10)
+ .columnRange(13,7)
.linesOfCode(nullopt
,"this is the problem line of code"
,nullopt))));
@@ -65,7 +65,7 @@ using namespace nix;
MkNixCode()
.nixFile("myfile.nix")
.errLine(MkErrLine().lineNumber(40)
- .columnRange(50,10)
+ .columnRange(13,7)
.linesOfCode(nullopt
,"this is the problem line of code"
,nullopt))));