Removes unnecessary semi colon

This commit is contained in:
Yatish Mehta 2015-01-13 13:55:12 -05:00
parent a2d3ab59c0
commit 45bb015adc

View File

@ -26,7 +26,7 @@ module Stripe
should "accessing id should not issue a fetch" do
@mock.expects(:get).never
c = Stripe::Customer.new("test_customer");
c = Stripe::Customer.new("test_customer")
c.id
end