Fixed rake test:resources task. The path was no longer valid.

Signed-off-by: Ryan Davis <zenspider@chef.io>
This commit is contained in:
Ryan Davis 2019-05-03 15:38:58 -07:00
parent 6235c3f658
commit 35aceeb9ba

View file

@ -129,7 +129,7 @@ namespace :test do
task :'functional:windows' => [:accept_license]
task :resources do
tests = Dir['test/resource/*_test.rb']
tests = Dir['test/unit/resource/*_test.rb']
return if tests.empty?
sh(Gem.ruby, 'test/docker_test.rb', *tests)
end