소스 검색

Fixing tests and using spaces, not tabs

Ben Cox 11 년 전
부모
커밋
c00fef0d1a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/fulfillment_service_test.rb

+ 1 - 1
test/fulfillment_service_test.rb

@@ -8,7 +8,7 @@ class FulFillmentServiceTest < Test::Unit::TestCase
 	end
 
 	test 'find should return the fulfillment service' do
-		fake "fulfillment_service/123456.json", :method => :get, :body => load_fixture('fulfillment_service')
+		fake "fulfillment_services/123456", :method => :get, :body => load_fixture('fulfillment_service')
 		fulfillment_service = ShopifyAPI::FulfillmentService.find(123456)
 		assert_equal 123456 , fulfillment_service.id
 		assert_equal "SomeService", fulfillment_service.name