summaryrefslogtreecommitdiffstats
path: root/autotest
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2009-01-22 10:58:34 +1100
committerJames Turnbull <james@lovedthanlost.net>2009-01-22 10:58:34 +1100
commita5b0a75e3b486212507250ee605b7dcd1743035d (patch)
tree2d13787dc5eb2052527035978592975c4d38d08f /autotest
parent234a035b97287d8910ca00a58b70a06775818693 (diff)
downloadpuppet-a5b0a75e3b486212507250ee605b7dcd1743035d.tar.gz
puppet-a5b0a75e3b486212507250ee605b7dcd1743035d.tar.xz
puppet-a5b0a75e3b486212507250ee605b7dcd1743035d.zip
Fix autotest on win32
Diffstat (limited to 'autotest')
-rw-r--r--autotest/puppet_rspec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/autotest/puppet_rspec.rb b/autotest/puppet_rspec.rb
index c19c29406..2bc2fbb2d 100644
--- a/autotest/puppet_rspec.rb
+++ b/autotest/puppet_rspec.rb
@@ -46,6 +46,6 @@ end
class Autotest::PuppetRspec < Autotest::Rspec
def spec_commands
ENV["AUTOTEST"] = "true"
- ENV["PATH"].split(":").collect { |dir| File.join(dir, "spec") }
+ ENV["PATH"].split(File::PATH_SEPARATOR).collect { |dir| File.join(dir, "spec") }
end
end