Skip to content

Commit 6bdfc3e

Browse files
committed
Fix spec on CI
1 parent 4cfaa86 commit 6bdfc3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_tools/ruby_h_to_go/spec/ruby_header_parser/parser_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
end
136136

137137
its(:name) { should eq "rb_big2ll" }
138-
its(:definition) { should eq "rb_big2ll(VALUE)" }
138+
its(:definition) { should include "rb_big2ll(VALUE)" }
139139
its(:typeref) { should eq typedef(type: "long long") }
140140
its(:args) { should eq args }
141141
end
@@ -150,7 +150,7 @@
150150
end
151151

152152
its(:name) { should eq "rb_big2ull" }
153-
its(:definition) { should eq "rb_big2ull(VALUE)" }
153+
its(:definition) { should include "rb_big2ull(VALUE)" }
154154
its(:typeref) { should eq typedef(type: "unsigned long long") }
155155
its(:args) { should eq args }
156156
end

0 commit comments

Comments
 (0)