diff options
author | Balasankar "Balu" C <balasankar@gitlab.com> | 2019-08-13 11:12:26 +0530 |
---|---|---|
committer | Balasankar "Balu" C <balasankar@gitlab.com> | 2019-08-13 14:28:54 +0530 |
commit | 9ab5346eeb7c1891a6828386334fa3e6b853a931 (patch) | |
tree | 1f24b0f51ace46efc8e3d325517bb1c6d308627b /spec/bin | |
parent | 943dbeffab397e20a748ff4f91922b79a7f29598 (diff) | |
download | gitlab-ce-9ab5346eeb7c1891a6828386334fa3e6b853a931.tar.gz |
Ensure changelog filenames are less than 99 characters longfix-filename-length
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
Diffstat (limited to 'spec/bin')
-rw-r--r-- | spec/bin/changelog_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bin/changelog_spec.rb b/spec/bin/changelog_spec.rb index 84bbe0525e5..c3a5abf2b7a 100644 --- a/spec/bin/changelog_spec.rb +++ b/spec/bin/changelog_spec.rb @@ -15,7 +15,7 @@ describe 'bin/changelog' do allow(entry).to receive(:branch_name).and_return('long-branch-' * 100) file_path = entry.send(:file_path) - expect(file_path.length).to eq(140) + expect(file_path.length).to eq(99) end end |