diff --git a/packages/features/bookings/lib/handleNewBooking/test/fresh-booking.test.ts b/packages/features/bookings/lib/handleNewBooking/test/fresh-booking.test.ts index 6d025ed437ac59..df08d080569bc3 100644 --- a/packages/features/bookings/lib/handleNewBooking/test/fresh-booking.test.ts +++ b/packages/features/bookings/lib/handleNewBooking/test/fresh-booking.test.ts @@ -1577,7 +1577,7 @@ describe("handleNewBooking", () => { email: booker.email, name: booker.name, }, - creationSource: "CreationSource.WEBAPP", + creationSource: CreationSource.WEBAPP, }, }), }); @@ -1621,7 +1621,7 @@ describe("handleNewBooking", () => { const createdBooking = await handleNewBooking(req); expect(createdBooking).toEqual( expect.objectContaining({ - creationSource: "CreationSource.WEBAPP", + creationSource: CreationSource.WEBAPP, }) ); },