The result may increase actually or not, since GC can finish
shorter than the timer granularity.
This commit is contained in:
Nobuyoshi Nakada 2021-11-30 08:49:41 +09:00 коммит произвёл GitHub
Родитель af59d35570
Коммит ac8647bec1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -9,7 +9,7 @@ ruby_version_is "3.1" do
it "increases as collections are run" do
time_before = GC.total_time
GC.start
GC.total_time.should > time_before
GC.total_time.should >= time_before
end
end
end