Skip to content

Commit

Permalink
Merge pull request #228 from cmluciano/cml/fixtravisbuild
Browse files Browse the repository at this point in the history
Fix travis build.
  • Loading branch information
JJ Asghar committed Feb 18, 2015
2 parents 27b6355 + 2c823cb commit fa1c7ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libraries/default.rb
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.
#

module Chef Software
module Opscode
# module rabbit
module RabbitMQ
# This method does some of the yuckiness of formatting parameters properly
Expand Down
2 changes: 1 addition & 1 deletion recipes/default.rb
Expand Up @@ -21,7 +21,7 @@

#
class Chef::Resource # rubocop:disable all
include Chef Software::RabbitMQ # rubocop:enable all
include Opscode::RabbitMQ # rubocop:enable all
end

case node['platform_family']
Expand Down
6 changes: 3 additions & 3 deletions spec/default_spec.rb
Expand Up @@ -26,9 +26,9 @@

it 'should create the directory /var/lib/rabbitmq/mnesia' do
expect(chef_run).to create_directory('/var/lib/rabbitmq/mnesia').with(
:user => 'rabbitmq',
:group => 'rabbitmq',
:mode => '775'
:user => 'rabbitmq',
:group => 'rabbitmq',
:mode => '775'
)
end

Expand Down

0 comments on commit fa1c7ee

Please sign in to comment.