Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@vanlanduyt.co>2017-07-17 19:11:07 +0300
committerBob Van Landuyt <bob@vanlanduyt.co>2017-07-18 17:23:38 +0300
commit6f26f6f79f33fdb7e4e556b7f6b37999b78cd323 (patch)
tree53bd301927604facd1d0c13608cf84f9b47d517a /spec/models/namespace_spec.rb
parent6a10626f981e1c4cd76e5d18e78880deba1b7fe3 (diff)
Allow groups with the name system
Diffstat (limited to 'spec/models/namespace_spec.rb')
-rw-r--r--spec/models/namespace_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/namespace_spec.rb b/spec/models/namespace_spec.rb
index 89ea5ceda95..a4090b37f65 100644
--- a/spec/models/namespace_spec.rb
+++ b/spec/models/namespace_spec.rb
@@ -44,7 +44,7 @@ describe Namespace, models: true do
end
context "is case insensitive" do
- let(:group) { build(:group, path: "System") }
+ let(:group) { build(:group, path: "Groups") }
it { expect(group).not_to be_valid }
end