summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-17 16:11:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-17 16:11:57 +0000
commit5aabf722a93aa67111987af086aefaf6e0cb421d (patch)
treec75e09100bf4236c461731bc629ff838a0c77917
parent9bed6e8e8effae57dd1c6797429429213eaddabd (diff)
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
-rw-r--r--test/lib/test/unit/assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/test/unit/assertions.rb b/test/lib/test/unit/assertions.rb
index 8eb805744e..cdd188478f 100644
--- a/test/lib/test/unit/assertions.rb
+++ b/test/lib/test/unit/assertions.rb
@@ -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: