From 7895319cd0cb5ac3172ecbf59fe71791e7724453 Mon Sep 17 00:00:00 2001 From: Morgan Haskel Date: Mon, 5 May 2014 14:27:03 -0400 Subject: [PATCH] 'be_mode' was getting confused by the leading 0. --- spec/acceptance/vhost_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/acceptance/vhost_spec.rb b/spec/acceptance/vhost_spec.rb index 6fa42a6b1..93b3f1f3a 100644 --- a/spec/acceptance/vhost_spec.rb +++ b/spec/acceptance/vhost_spec.rb @@ -469,7 +469,7 @@ class { 'apache': } it { should be_directory } it { should be_owned_by 'test_owner' } it { should be_grouped_into 'test_group' } - it { should be_mode '0750' } + it { should be_mode 750 } end end