diff --git a/tests/fixtures/server-components/app/api/on-demand-revalidate/tag/route.ts b/tests/fixtures/server-components/app/api/on-demand-revalidate/tag/route.ts index 613b951b00..f46ec75e82 100644 --- a/tests/fixtures/server-components/app/api/on-demand-revalidate/tag/route.ts +++ b/tests/fixtures/server-components/app/api/on-demand-revalidate/tag/route.ts @@ -2,7 +2,7 @@ import { NextRequest, NextResponse } from 'next/server' import { revalidateTag } from 'next/cache' export async function GET(request: NextRequest) { - revalidateTag('collection') + revalidateTag('collection,with-comma') return NextResponse.json({ revalidated: true, now: new Date().toISOString() }) } diff --git a/tests/fixtures/server-components/app/static-fetch-1/page.js b/tests/fixtures/server-components/app/static-fetch-1/page.js index 32ea5effe0..b9bc5583f6 100644 --- a/tests/fixtures/server-components/app/static-fetch-1/page.js +++ b/tests/fixtures/server-components/app/static-fetch-1/page.js @@ -1,6 +1,6 @@ async function getData() { const res = await fetch(`https://strangerthings-quotes.vercel.app/api/quotes`, { - next: { tags: ['collection'] }, + next: { tags: ['collection,with-comma'] }, }) return res.json() } diff --git a/tests/fixtures/server-components/app/static-fetch-2/page.js b/tests/fixtures/server-components/app/static-fetch-2/page.js index 695446cc3a..1745e8ead0 100644 --- a/tests/fixtures/server-components/app/static-fetch-2/page.js +++ b/tests/fixtures/server-components/app/static-fetch-2/page.js @@ -1,6 +1,6 @@ async function getData() { const res = await fetch(`https://strangerthings-quotes.vercel.app/api/quotes`, { - next: { tags: ['collection'] }, + next: { tags: ['collection,with-comma'] }, }) return res.json() } diff --git a/tests/fixtures/server-components/app/static-fetch-3/page.js b/tests/fixtures/server-components/app/static-fetch-3/page.js index c14d37d925..ed004c2b3f 100644 --- a/tests/fixtures/server-components/app/static-fetch-3/page.js +++ b/tests/fixtures/server-components/app/static-fetch-3/page.js @@ -1,6 +1,6 @@ async function getData() { const res = await fetch(`https://strangerthings-quotes.vercel.app/api/quotes`, { - next: { tags: ['collection'] }, + next: { tags: ['collection,with-comma'] }, }) return res.json() }