From beff66c04fc27c91c16ff6cc75575fded55a959e Mon Sep 17 00:00:00 2001 From: Лач Date: Sun, 19 Jul 2020 12:42:36 +0000 Subject: [PATCH] test: fix column offsets --- --- a/crates/jrsonnet-evaluator/src/trace/location.rs +++ b/crates/jrsonnet-evaluator/src/trace/location.rs @@ -83,14 +83,14 @@ vec![ CodeLocation { line: 1, - column: 1, + column: 2, line_start_offset: 0, line_end_offset: 11 }, CodeLocation { line: 2, - column: 3, - line_start_offset: 11, + column: 4, + line_start_offset: 12, line_end_offset: 67 } ] -- gitstuff