1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fixed missing should

This commit is contained in:
Nobuyoshi Nakada 2020-05-03 00:05:19 +09:00
parent c2dc52e18b
commit 9998161b10
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -56,7 +56,7 @@ describe :rbasic, shared: true do
it "supports user flags" do
obj, _ = @data.call
@specs.get_flags(obj) == 0
@specs.get_flags(obj).should == 0
@specs.set_flags(obj, 1 << 14 | 1 << 16).should == 1 << 14 | 1 << 16
@specs.get_flags(obj).should == 1 << 14 | 1 << 16
@specs.set_flags(obj, 0).should == 0