Skip to content

Commit

Permalink
Fix typo in be_identical_as_soource matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Jun 15, 2024
1 parent 312c119 commit bd88a93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/acceptance/puppet/modulebuilder/builder_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
end
end

RSpec::Matchers.define :be_identical_as_soource do
RSpec::Matchers.define :be_identical_as_source do
match do |actual|
@source = Dir.glob(actual, base: module_source)
@extracted = Dir.glob(actual, base: extracted_module_path)
Expand Down Expand Up @@ -95,9 +95,9 @@
expect('appveyor.yml').to be_an_empty_glob

# Important Extracted files
expect('manifests/*').to be_identical_as_soource
expect('templates/*').to be_identical_as_soource
expect('lib/*').to be_identical_as_soource
expect('manifests/*').to be_identical_as_source
expect('templates/*').to be_identical_as_source
expect('lib/*').to be_identical_as_source
end
end
end
Expand Down

0 comments on commit bd88a93

Please sign in to comment.