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

remove extra dot

* test/lib/test/unit/assertions.rb (all_assertions): remove tail
  dot as it is added in message again.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-01-17 16:11:57 +00:00
parent 9bed6e8e8e
commit 5aabf722a9

View file

@ -814,7 +814,7 @@ eom
all = AllFailures.new
yield all
ensure
assert(all.pass?, message(msg) {all.message})
assert(all.pass?, message(msg) {all.message.chomp(".")})
end
def build_message(head, template=nil, *arguments) #:nodoc: