diff options
author | Shinya Maeda <shinya@gitlab.com> | 2018-09-27 19:32:26 +0900 |
---|---|---|
committer | Alessio Caiazza <acaiazza@gitlab.com> | 2018-10-02 17:08:12 +0200 |
commit | fcb77970b6ca26f031d5bcf935855a91bbb35158 (patch) | |
tree | a6bcef7e2ce1cd45eb97e26dc7c56db3a9dcf52a /lib | |
parent | eee454e142fb99646649f8b8c9ccd8626c9bd70a (diff) | |
download | gitlab-ce-fcb77970b6ca26f031d5bcf935855a91bbb35158.tar.gz |
Fix Status::Build::Scheduled. Add spec for the class.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/ci/status/build/scheduled.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/gitlab/ci/status/build/scheduled.rb b/lib/gitlab/ci/status/build/scheduled.rb index 7b46c81fb5d..d7d762cdf7a 100644 --- a/lib/gitlab/ci/status/build/scheduled.rb +++ b/lib/gitlab/ci/status/build/scheduled.rb @@ -8,7 +8,10 @@ module Gitlab image: 'illustrations/scheduled-job_countdown.svg', size: 'svg-394', title: _("This is a scheduled to run in ") + " #{execute_in}", - content: _("This job will automatically run after it's timer finishes. Often they are used for incremental roll-out deploys to production environments. When unscheduled it converts into a manual action.") + content: _("This job will automatically run after it's timer finishes. " \ + "Often they are used for incremental roll-out deploys " \ + "to production environments. When unscheduled it converts " \ + "into a manual action.") } end |