Skip to content

Commit

Permalink
Fix source_map_test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Nov 25, 2014
1 parent 551a615 commit 643fbbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/sass/source_map_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -801,12 +801,12 @@ def test_multiline_interpolation_source_range
interpolated = engine.to_tree.children.
first.children.
first.value.children[1]
assert_equal interpolated.to_sass, "\#{123}"
assert_equal "123", interpolated.to_sass
range = interpolated.source_range
assert_equal 3, range.start_pos.line
assert_equal 12, range.start_pos.offset
assert_equal 14, range.start_pos.offset
assert_equal 3, range.end_pos.line
assert_equal 18, range.end_pos.offset
assert_equal 17, range.end_pos.offset
end

def test_sources_array_is_uri_escaped
Expand Down

0 comments on commit 643fbbe

Please sign in to comment.