summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/project_config/source_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/ci/project_config/source_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/project_config/source_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/lib/gitlab/ci/project_config/source_spec.rb b/spec/lib/gitlab/ci/project_config/source_spec.rb
index 5248cf080e8..eefabe1babb 100644
--- a/spec/lib/gitlab/ci/project_config/source_spec.rb
+++ b/spec/lib/gitlab/ci/project_config/source_spec.rb
@@ -21,9 +21,9 @@ RSpec.describe Gitlab::Ci::ProjectConfig::Source, feature_category: :continuous_
it { expect { source }.to raise_error(NotImplementedError) }
end
- describe '#contains_internal_include?' do
- subject(:contains_internal_include) { custom_config.contains_internal_include? }
+ describe '#internal_include_prepended?' do
+ subject(:internal_include_prepended) { custom_config.internal_include_prepended? }
- it { expect(contains_internal_include).to eq(false) }
+ it { expect(internal_include_prepended).to eq(false) }
end
end