Commit 19413488 authored by Thong Kuah's avatar Thong Kuah

Fix frozen string error

parent e3ff1970
...@@ -96,8 +96,8 @@ describe License do ...@@ -96,8 +96,8 @@ describe License do
it 'shows the proper error message' do it 'shows the proper error message' do
license.valid? license.valid?
error_msg = "This GitLab installation currently has 2 active users, exceeding this license's limit of 1 by 1 user. " error_msg = "This GitLab installation currently has 2 active users, exceeding this license's limit of 1 by 1 user. " \
error_msg << "Please upload a license for at least 2 users or contact sales at renewals@gitlab.com" "Please upload a license for at least 2 users or contact sales at renewals@gitlab.com"
expect(license.errors[:base].first).to eq(error_msg) expect(license.errors[:base].first).to eq(error_msg)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment