summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-07-24 15:35:34 -0700
committerLuke Kanies <luke@madstop.com>2009-07-24 15:35:34 -0700
commitb4facb0bacaa6e3bc1eb3123c69e037e0ba8ec69 (patch)
tree99ae1e6d3747ee8db3da0386282939e7a41d8627
parentb418921fb846e7d083c39a9556810ff067878e86 (diff)
downloadpuppet-b4facb0bacaa6e3bc1eb3123c69e037e0ba8ec69.tar.gz
puppet-b4facb0bacaa6e3bc1eb3123c69e037e0ba8ec69.tar.xz
puppet-b4facb0bacaa6e3bc1eb3123c69e037e0ba8ec69.zip
Fixing a test broken by changing the default os x package type
Signed-off-by: Luke Kanies <luke@madstop.com>
-rwxr-xr-xspec/integration/type/package.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/type/package.rb b/spec/integration/type/package.rb
index a3d8eb278..bf78d2987 100755
--- a/spec/integration/type/package.rb
+++ b/spec/integration/type/package.rb
@@ -9,7 +9,7 @@ describe Puppet::Type.type(:package), "when choosing a default package provider"
end
def provider_name(os)
- {"Ubuntu" => :apt, "Debian" => :apt, "Darwin" => :apple, "RedHat" => :up2date, "Fedora" => :yum, "FreeBSD" => :ports, "OpenBSD" => :openbsd, "Solaris" => :sun}[os]
+ {"Ubuntu" => :apt, "Debian" => :apt, "Darwin" => :pkgdmg, "RedHat" => :up2date, "Fedora" => :yum, "FreeBSD" => :ports, "OpenBSD" => :openbsd, "Solaris" => :sun}[os]
end
it "should have a default provider" do