remove weird spaces from resource mutation test

This commit is contained in:
Igor Minar 2011-03-30 15:22:14 -07:00
parent 94514a91f8
commit 9985104dc0

View file

@ -177,7 +177,7 @@ describe("resource", function() {
expect(callback).wasCalledWith(cc);
});
it('should not mutate the resource object if response contains no body', function(){
it('should not mutate the resource object if response contains no body', function(){
var data = {id:{key:123}, number:'9876'};
xhr.expectGET("/CreditCard/123").respond(data);
var cc = CreditCard.get({id:123});