Skip to content

Commit

Permalink
fixes server tests after changing IPaper interface (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
eshedmargalit authored Jan 2, 2021
1 parent 1ad4bf1 commit 9eb4747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/test/services/doi.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { testDOIString } from '../testData';
describe('.doiToPaper', () => {
describe('when input is a real DOI string', () => {
it('parses correctly', () => {
expect(doiToPaper(testDOIString)?.paper.journal).toEqual('The Journal of Neuroscience');
expect(doiToPaper(testDOIString)?.journal).toEqual('The Journal of Neuroscience');
expect(false).toBe(false);
});
});
Expand Down

0 comments on commit 9eb4747

Please sign in to comment.