update test case for StoreApi.getOrderById (id: 1 => 2)

This commit is contained in:
William Cheng 2015-03-31 14:37:59 +08:00
parent 59140bd3f3
commit cb2f1e1bb1

View File

@ -64,7 +64,7 @@ describe "Store" do
end
it "should fetch an order" do
item = StoreApi.getOrderById(1)
item.id.should == 1
item = StoreApi.getOrderById(2)
item.id.should == 2
end
end