Merge pull request #2117 from iptv-org/fix-tvgids.nl

Fix tvgids.nl
This commit is contained in:
Ismaël Moret 2023-07-03 13:31:52 +02:00 committed by GitHub
commit 55f6c5d5f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ it('can generate valid url', () => {
}) })
it('can generate valid url for today', () => { it('can generate valid url for today', () => {
const today = dayjs.utc().startOf('d') const today = dayjs().startOf('d')
expect(url({ date: today, channel })).toBe('https://www.tvgids.nl/gids/npo1') expect(url({ date: today, channel })).toBe('https://www.tvgids.nl/gids/npo1')
}) })