Skip to content

Commit

Permalink
fix my accidentally broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
willryan committed May 3, 2022
1 parent 7fd6923 commit 54e9bc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/async.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,6 @@ describe("async factories build stuff", () => {
id: "1",
payload: null,
});
expect(instanceOfData.payload).toEqual({ foo: "bar" });
expect(instanceOfData.payload).toEqual(null);
});
});
2 changes: 1 addition & 1 deletion spec/sync.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,6 @@ describe("factories build stuff", () => {
id: "1",
payload: null,
});
expect(instanceOfData.payload).toEqual({ foo: "bar" });
expect(instanceOfData.payload).toEqual(null);
});
});

0 comments on commit 54e9bc6

Please sign in to comment.