Use the argument - not a static value

This commit is contained in:
Matt Langlois 2019-08-05 19:08:35 -07:00
Родитель 28d00e8fed
Коммит 54dd97fef5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0472F74D7368B36B
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -263,7 +263,7 @@ module GitHub
#
# Returns the key's value after incrementing.
def increment(key, amount: 1, expires: nil)
raise ArgumentError.new("The amount specified must be an integer") unless 1.is_a? Integer
raise ArgumentError.new("The amount specified must be an integer") unless amount.is_a? Integer
raise ArgumentError.new("The amount specified my be > 0") if amount < 1
# This query uses a few MySQL "hacks" to ensure that the incrementing