test/test_helper.rb in bindata-2.4.13 vs test/test_helper.rb in bindata-2.4.14

- old
+ new

@@ -35,11 +35,11 @@ must_equal expected.dup.force_encoding(Encoding::BINARY) end def must_raise_on_line(exp, line, msg = nil) ex = self.must_raise exp - ex.message.must_equal msg if msg + (ex.message).must_equal msg if msg idx = ex.backtrace.find_index { |bt| /:in `must_raise_on_line'$/ =~ bt } line_num_regex = /.*:(\d+)(:.*|$)/ err_line = line_num_regex.match(ex.backtrace[0])[1].to_i @@ -54,8 +54,8 @@ result = str } self.stub(:warn, callable) do block.call end - result.must_equal msg + (result).must_equal msg end end