summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJesse Wolfe <jes5199@gmail.com>2010-04-13 13:41:47 -0700
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit9b2b0ecf2245f8e84e7e9811b2aca2a7b983f015 (patch)
tree1602373f26fde0024fca8605793007dd717c502a /Rakefile
parent6a66d5edeaab8979bad4527a82fa6cebd9b966f7 (diff)
downloadpuppet-9b2b0ecf2245f8e84e7e9811b2aca2a7b983f015.tar.gz
puppet-9b2b0ecf2245f8e84e7e9811b2aca2a7b983f015.tar.xz
puppet-9b2b0ecf2245f8e84e7e9811b2aca2a7b983f015.zip
Fix #3551 rake spec fails to run integration specs
A typo prevents the Rakefile from finding tests in spec/integration Signed-off-by: Jesse Wolfe <jes5199@gmail.com>
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 515184a8c..a1693a9d4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -44,7 +44,7 @@ task :puppetpackages => [:create_gem, :package]
Spec::Rake::SpecTask.new do |t|
t.spec_opts = ['--format','s', '--loadby','mtime']
- t.pattern ='spec/{unit,integation}/**/*.rb'
+ t.pattern ='spec/{unit,integration}/**/*.rb'
t.fail_on_error = false
end