From 2f6ef4b57805267dcf0535b7fb300e7c2d6305d3 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Thu, 19 Aug 2021 13:16:50 -0600 Subject: [PATCH] Fix accidental check-in from testing --- spec/line_number_spec.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/line_number_spec.cr b/spec/line_number_spec.cr index 90491a5..5439ea0 100644 --- a/spec/line_number_spec.cr +++ b/spec/line_number_spec.cr @@ -15,7 +15,7 @@ Spectator.describe Spectator do it "handles multiple lines and examples" do # Offset is important. - expect(location.line).to eq(__LINE__ - 3) + expect(location.line).to eq(__LINE__ - 2) # This line fails, refer to https://github.com/crystal-lang/crystal/issues/10562 # expect(location.end_line).to eq(__LINE__ + 2) # Offset is still important.