1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Use sequence in software_update fabricator to allow multiple (#29438)

This commit is contained in:
Matt Jankowski 2024-02-29 05:51:11 -05:00 committed by GitHub
parent 4185f3792c
commit 14c65180df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true
Fabricator(:software_update) do Fabricator(:software_update) do
version '99.99.99' version { sequence(:version) { |point| "99.99.#{point}" } }
urgent false urgent false
type 'patch' type 'patch'
end end