summaryrefslogtreecommitdiff
path: root/spec/syntax_suggest/unit
diff options
context:
space:
mode:
Diffstat (limited to 'spec/syntax_suggest/unit')
-rw-r--r--spec/syntax_suggest/unit/block_expand_spec.rb4
-rw-r--r--spec/syntax_suggest/unit/clean_document_spec.rb3
2 files changed, 3 insertions, 4 deletions
diff --git a/spec/syntax_suggest/unit/block_expand_spec.rb b/spec/syntax_suggest/unit/block_expand_spec.rb
index 4f93210368..5cff73621d 100644
--- a/spec/syntax_suggest/unit/block_expand_spec.rb
+++ b/spec/syntax_suggest/unit/block_expand_spec.rb
@@ -28,9 +28,9 @@ module SyntaxSuggest
block = expansion.expand_neighbors(block)
expect(block.to_s).to eq(<<~EOM.indent(2))
- def bark # index 1
+ def bark # index 1
- end # index 3
+ end # index 3
EOM
end
diff --git a/spec/syntax_suggest/unit/clean_document_spec.rb b/spec/syntax_suggest/unit/clean_document_spec.rb
index bb26e2f392..25a62e4454 100644
--- a/spec/syntax_suggest/unit/clean_document_spec.rb
+++ b/spec/syntax_suggest/unit/clean_document_spec.rb
@@ -72,7 +72,6 @@ module SyntaxSuggest
EOM
end
-
it "joins multi-line chained methods when separated by comments" do
source = <<~EOM
User.
@@ -114,7 +113,7 @@ module SyntaxSuggest
lines = CleanDocument.new(source: source).lines
expect(lines[0].to_s).to eq($/)
expect(lines[1].to_s).to eq('puts "what"' + $/)
- expect(lines[2].to_s).to eq(' ' + $/)
+ expect(lines[2].to_s).to eq($/)
end
it "trailing slash: does not join trailing do" do