|  | @@ -3,7 +3,7 @@ require 'test_helper'
 | 
	
		
			
				|  |  |  class LimitsTest < Test::Unit::TestCase
 | 
	
		
			
				|  |  |    def setup
 | 
	
		
			
				|  |  |      super
 | 
	
		
			
				|  |  | -    @header_hash = {'X-Shopify-Shop-Api-Call-Limit' => '100/300'}
 | 
	
		
			
				|  |  | +    @header_hash = { 'X-Shopify-Shop-Api-Call-Limit' => '100/300' }
 | 
	
		
			
				|  |  |      ShopifyAPI::Base.connection.expects(:response).at_least(0).returns(@header_hash)
 | 
	
		
			
				|  |  |    end
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -22,7 +22,7 @@ class LimitsTest < Test::Unit::TestCase
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      should "flag maxed out credits" do
 | 
	
		
			
				|  |  |        assert !ShopifyAPI.maxed?
 | 
	
		
			
				|  |  | -      @header_hash = {'X-Shopify-Shop-Api-Call-Limit' => '299/300'}
 | 
	
		
			
				|  |  | +      @header_hash = { 'X-Shopify-Shop-Api-Call-Limit' => '299/300' }
 | 
	
		
			
				|  |  |        ShopifyAPI::Base.connection.expects(:response).at_least(1).returns(@header_hash)
 | 
	
		
			
				|  |  |        assert ShopifyAPI.maxed?
 | 
	
		
			
				|  |  |      end
 |