Skip to content

Commit ddcd042

Browse files
committed
Fix indentation
1 parent 626a43a commit ddcd042

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

optional/capi/string_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1419,8 +1419,8 @@ def inspect
14191419
ruby_bug "21842", ""..."4.1" do
14201420
it "returns BINARY encoding for strings that use the 8th bit" do
14211421
0x80.upto(0xff) do |char|
1422-
result = @s.rb_interned_str(char.chr, 1)
1423-
result.encoding.should == Encoding::BINARY
1422+
result = @s.rb_interned_str(char.chr, 1)
1423+
result.encoding.should == Encoding::BINARY
14241424
end
14251425
end
14261426
end
@@ -1478,8 +1478,8 @@ def inspect
14781478
ruby_bug "21842", ""..."4.1" do
14791479
it "returns BINARY encoding for strings that use the 8th bit" do
14801480
0x80.upto(0xff) do |char|
1481-
result = @s.rb_interned_str_cstr(char.chr)
1482-
result.encoding.should == Encoding::BINARY
1481+
result = @s.rb_interned_str_cstr(char.chr)
1482+
result.encoding.should == Encoding::BINARY
14831483
end
14841484
end
14851485
end

0 commit comments

Comments
 (0)