diff options
Diffstat (limited to 'spec/ruby/library/stringio')
-rw-r--r-- | spec/ruby/library/stringio/codepoints_spec.rb | 2 | ||||
-rw-r--r-- | spec/ruby/library/stringio/each_codepoint_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/library/stringio/codepoints_spec.rb b/spec/ruby/library/stringio/codepoints_spec.rb index 098bd3c4c3..5e6fa681e7 100644 --- a/spec/ruby/library/stringio/codepoints_spec.rb +++ b/spec/ruby/library/stringio/codepoints_spec.rb @@ -5,5 +5,5 @@ require File.expand_path('../shared/codepoints', __FILE__) # See redmine #1667 describe "StringIO#codepoints" do - it_behaves_like(:stringio_codepoints, :codepoints) + it_behaves_like :stringio_codepoints, :codepoints end diff --git a/spec/ruby/library/stringio/each_codepoint_spec.rb b/spec/ruby/library/stringio/each_codepoint_spec.rb index 25a0bf4c81..8351bf4175 100644 --- a/spec/ruby/library/stringio/each_codepoint_spec.rb +++ b/spec/ruby/library/stringio/each_codepoint_spec.rb @@ -5,6 +5,6 @@ require File.expand_path('../shared/codepoints', __FILE__) # See redmine #1667 describe "StringIO#each_codepoint" do - it_behaves_like(:stringio_codepoints, :codepoints) + it_behaves_like :stringio_codepoints, :codepoints end |