Skip to content

Commit

Permalink
Fix broken unit test #18
Browse files Browse the repository at this point in the history
  • Loading branch information
joelvdavies committed Nov 1, 2023
1 parent a96d6e7 commit f8fa688
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/api/systems.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ describe('System api functions', () => {
});

expect(result.current.data).toEqual(
SystemsJSON.filter((system) => system.id === '65328f34a40ff5301575a4e3')
SystemsJSON.filter(
(system) => system.id === '65328f34a40ff5301575a4e3'
)[0]
);
});
});
Expand Down

0 comments on commit f8fa688

Please sign in to comment.