diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-25 05:14:18 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-25 05:14:18 +0000 |
commit | 31637f00fcbaf7c92313e8bf673925b47abaad7f (patch) | |
tree | eb4611fddedf42c60b235fe2d7a31f2a323a168c | |
parent | 93a460f7742dd72b6c3f7667cde69417010c2f76 (diff) |
test_prime.rb: cosmetic changes
* test/test_prime.rb (test_eratosthenes_works_fine_after_timeout):
use spaces instead of TABs in ruby codes. [Fix GH-944]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/test_prime.rb | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Thu Jun 25 14:14:16 2015 takiy33 <[email protected]> + + * test/test_prime.rb (test_eratosthenes_works_fine_after_timeout): + use spaces instead of TABs in ruby codes. [Fix GH-944] + Thu Jun 25 07:08:35 2015 Koichi Sasada <[email protected]> * gc.c (obj_info, method_type_name): show method type name in a string diff --git a/test/test_prime.rb b/test/test_prime.rb index 75d83a5b85..f6440f861b 100644 --- a/test/test_prime.rb +++ b/test/test_prime.rb @@ -180,8 +180,8 @@ class TestPrime < Test::Unit::TestCase end begin - Timeout.timeout(0.5) { Prime.each(7*37){} } - flunk("timeout expected") + Timeout.timeout(0.5) { Prime.each(7*37){} } + flunk("timeout expected") rescue Timeout::Error end ensure |