Commit 0fee2482f254dff2bf95e36d94818ab68a7634e0
1 parent
01359ccce2
Exists in
master
and in
2 other branches
espacios
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
spec/serviceSpec.js
... | ... | @@ -127,7 +127,7 @@ describe('Servicios de foca abm chofer', function() { |
127 | 127 | var returnFake = 'test'; |
128 | 128 | var paramFake = 1; |
129 | 129 | var result; |
130 | - httpBackend.expectGET('localhost/transportista/'+ paramFake).respond(returnFake); | |
130 | + httpBackend.expectGET('localhost/transportista/' + paramFake).respond(returnFake); | |
131 | 131 | |
132 | 132 | //act |
133 | 133 | servicio.getTransportistaPorId(paramFake).then(function(data) { |
... | ... | @@ -144,7 +144,7 @@ describe('Servicios de foca abm chofer', function() { |
144 | 144 | var returnFake = 'test'; |
145 | 145 | var paramFake = 1; |
146 | 146 | var result; |
147 | - httpBackend.expectDELETE('localhost/chofer/'+ paramFake).respond(returnFake); | |
147 | + httpBackend.expectDELETE('localhost/chofer/' + paramFake).respond(returnFake); | |
148 | 148 | |
149 | 149 | //act |
150 | 150 | servicio.deleteChofer(paramFake).then(function(data) { |