From f85e73087e64922d29e6791d50be34f5f641b734 Mon Sep 17 00:00:00 2001 From: Steven Bazyl Date: Thu, 25 Oct 2012 14:28:16 -0700 Subject: [PATCH] Additional fix for broken ||= constant assignment --- spec/google/api_client/batch_spec.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec/google/api_client/batch_spec.rb b/spec/google/api_client/batch_spec.rb index 762e3b2910..7eed46f299 100644 --- a/spec/google/api_client/batch_spec.rb +++ b/spec/google/api_client/batch_spec.rb @@ -13,12 +13,11 @@ # limitations under the License. require 'spec_helper' - require 'google/api_client' require 'google/api_client/version' describe Google::APIClient::BatchRequest do - CLIENT ||= Google::APIClient.new + CLIENT = Google::APIClient.new unless defined?(CLIENT) after do # Reset client to not-quite-pristine state -- 2.30.2