Fix an old copypasta: internal -> private

This commit is contained in:
Lin Jen-Shin 2016-11-18 18:37:32 +08:00
parent 8dbea58249
commit a41ee7eb5e

View file

@ -136,7 +136,7 @@ describe Gitlab::GitAccess, lib: true do
end
context 'from private project' do
let(:project) { create(:project, :internal) }
let(:project) { create(:project, :private) }
it { expect(subject).not_to be_allowed }
end