Skip to content

Commit bd88a93

Browse files
committed
Fix typo in be_identical_as_soource matcher
1 parent 312c119 commit bd88a93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/acceptance/puppet/modulebuilder/builder_spec.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
end
5353
end
5454

55-
RSpec::Matchers.define :be_identical_as_soource do
55+
RSpec::Matchers.define :be_identical_as_source do
5656
match do |actual|
5757
@source = Dir.glob(actual, base: module_source)
5858
@extracted = Dir.glob(actual, base: extracted_module_path)
@@ -95,9 +95,9 @@
9595
expect('appveyor.yml').to be_an_empty_glob
9696

9797
# Important Extracted files
98-
expect('manifests/*').to be_identical_as_soource
99-
expect('templates/*').to be_identical_as_soource
100-
expect('lib/*').to be_identical_as_soource
98+
expect('manifests/*').to be_identical_as_source
99+
expect('templates/*').to be_identical_as_source
100+
expect('lib/*').to be_identical_as_source
101101
end
102102
end
103103
end

0 commit comments

Comments
 (0)