diff options
Diffstat (limited to 'spec/syntax_suggest/unit/clean_document_spec.rb')
-rw-r--r-- | spec/syntax_suggest/unit/clean_document_spec.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/syntax_suggest/unit/clean_document_spec.rb b/spec/syntax_suggest/unit/clean_document_spec.rb index fa049ad8df..4fb79efd62 100644 --- a/spec/syntax_suggest/unit/clean_document_spec.rb +++ b/spec/syntax_suggest/unit/clean_document_spec.rb @@ -66,9 +66,9 @@ module SyntaxSuggest highlight_lines: lines[0] ).call ).to eq(<<~'EOM') - ❯ 1 User - ❯ 2 .where(name: 'schneems') - ❯ 3 .first + > 1 User + > 2 .where(name: 'schneems') + > 3 .first EOM end @@ -169,8 +169,8 @@ module SyntaxSuggest ).call ).to eq(<<~'EOM') 1 context "timezones workaround" do - ❯ 2 it "should receive a time in UTC format and return the time with the"\ - ❯ 3 "office's UTC offset substracted from it" do + > 2 it "should receive a time in UTC format and return the time with the"\ + > 3 "office's UTC offset substracted from it" do 4 travel_to DateTime.new(2020, 10, 1, 10, 0, 0) do 5 office = build(:office) 6 end @@ -227,9 +227,9 @@ module SyntaxSuggest highlight_lines: lines[0] ).call ).to eq(<<~'EOM') - ❯ 1 it "should " \ - ❯ 2 "keep " \ - ❯ 3 "going " do + > 1 it "should " \ + > 2 "keep " \ + > 3 "going " do 4 end EOM end |