Skip to content

Commit 5eb29e4

Browse files
committed
add missing import getMI
1 parent 705e4e6 commit 5eb29e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lambdas/api-handler/src/services/__tests__/mi-operations.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { IncomingMI } from "../../contracts/mi";
2-
import { postMI } from "../mi-operations";
2+
import { getMI, postMI } from "../mi-operations";
33

44
describe("postMI function", () => {
55
const incomingMi: IncomingMI = {
@@ -44,7 +44,7 @@ describe("postMI function", () => {
4444
getMI: jest.fn().mockResolvedValue(persistedMi),
4545
};
4646

47-
const result = await getMI("id1", "supplier1" , mockRepo as any);
47+
const result = await getMI("id1", "supplier1", mockRepo as any);
4848

4949
expect(result).toEqual({
5050
data: {

0 commit comments

Comments
 (0)