Adjust whitespace

This commit is contained in:
Ben Schwartz 2022-02-02 13:19:33 -05:00
parent f1c4b6b969
commit 2545b4ea09

View file

@ -800,13 +800,16 @@ describe('bindService', () => {
spyOnAllFunctions(service);
jasmine.setDefaultSpyStrategy(fail);
bindService(server, prefix, service);
url.pathname = path;
const response = await fetch(url);
const body = await response.json();
expect(body).toEqual({code: 'ResourceNotFound', message: `${path} does not exist`});
});
expect(body).toEqual({
code: 'ResourceNotFound',
message: `${path} does not exist`
});
});
});
});