about summary refs log tree commit diff
path: root/spec/helpers
diff options
context:
space:
mode:
authorunarist <m.unarist@gmail.com>2017-06-21 01:45:09 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-06-20 18:45:09 +0200
commitb16b69350eb4ded2e1011931433b51dac5e34b53 (patch)
tree7fdb2a90283e33be19fb000c787da9567c403452 /spec/helpers
parentda6fa029f66d50f38f2b6c85687994793f7766aa (diff)
Fix RTL detection on Ruby side (#3867)
This fixes below bugs:

* pipe characters being counted as RTL character
* only first word being checked
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/stream_entries_helper_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/helpers/stream_entries_helper_spec.rb b/spec/helpers/stream_entries_helper_spec.rb
index 1ef49a3ab..2c0d7b239 100644
--- a/spec/helpers/stream_entries_helper_spec.rb
+++ b/spec/helpers/stream_entries_helper_spec.rb
@@ -217,7 +217,7 @@ RSpec.describe StreamEntriesHelper, type: :helper do
     end
 
     it 'is true if right to left characters are greater than 1/3 of total text' do
-      expect(helper).to be_rtl 'aaݟ'
+      expect(helper).to be_rtl 'aaݟaaݟ'
     end
   end
 end