Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tlmn committed Apr 17, 2024
1 parent 45c0409 commit 504ada5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/parseHouseNumberDecimal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ describe("parseHouseNumberDecimal", () => {

it("should return undefined for supplement if decimal part is zero", () => {
const result = parseHouseNumberDecimal(123456.0);
expect(result.houseNumberSupplement).toBeUndefined();
expect(result?.houseNumberSupplement).toBeUndefined();
});
});

0 comments on commit 504ada5

Please sign in to comment.