Add some more buffer for timeout check

This spec is unstable on our CI environment:
https://gist.github.com/ko1/efa58acf4cd1d7b5bf1f63881537afe8

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2019-03-29 12:00:44 +00:00
Родитель ce9e0ffd71
Коммит 49f1b71144
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@ describe "Timeout.timeout" do
end
end.should raise_error(StandardError)
(Time.now - before_time).should be_close(1.0, 0.5)
(Time.now - before_time).should be_close(1.0, 0.8)
end
it "returns back the last value in the block" do