Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Fix verify_service method namespace conflict.
Browse files Browse the repository at this point in the history
When running "bundle exec rake full[1]" all of the specs are loaded and
BVT::Spec::CanonicalHelper and BVT::Spec::ServiceLifecycleHelper are both
included at the top level. This causes specs intending to call the canonical
verify_service to fail because the two have different signatures.

Change-Id: Ic80e798fea3232c05657e94beccd29a52f8e0ebb
Reviewed-on: http://reviews.cloudfoundry.org/9060
Tested-by: CI Master <cf-ci@rbcon.com>
Reviewed-by: Michael Zhang <zhangcheng@rbcon.com>
  • Loading branch information
mmb authored and Matthew M. Boedicker committed Sep 13, 2012
1 parent 61e3a5b commit a23dfbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/service_lifecycle/ruby19_sinatra_spec.rb
Expand Up @@ -5,11 +5,12 @@
require 'tempfile'
require 'base64'
include BVT::Spec
include BVT::Spec::ServiceLifecycleHelper


describe BVT::Spec::ServiceLifecycle::Ruby19Sinatra do

include BVT::Spec::ServiceLifecycleHelper

before(:each) do
@session = BVT::Harness::CFSession.new
end
Expand Down

0 comments on commit a23dfbb

Please sign in to comment.