From 3adbed5b2dd40ef418b19013b899f9a7824da8a2 Mon Sep 17 00:00:00 2001 From: Robin Pyon Date: Fri, 8 Dec 2023 04:33:26 +0000 Subject: [PATCH] chore: update snapshots --- packages/sanity/src/core/studio/Studio.test.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/sanity/src/core/studio/Studio.test.tsx b/packages/sanity/src/core/studio/Studio.test.tsx index edbac43ef86..47ec351045f 100644 --- a/packages/sanity/src/core/studio/Studio.test.tsx +++ b/packages/sanity/src/core/studio/Studio.test.tsx @@ -45,7 +45,7 @@ describe('Studio', () => { const html = renderToStaticMarkup(sheet.collectStyles()) expect(html).toMatchInlineSnapshot( - `"
"`, + `"
"`, ) } finally { sheet.seal() @@ -62,7 +62,7 @@ describe('Studio', () => { try { const html = renderToString(sheet.collectStyles()) expect(html).toMatchInlineSnapshot( - `"
"`, + `"
"`, ) } finally { sheet.seal() @@ -82,7 +82,7 @@ describe('Studio', () => { const html = renderToString(sheet.collectStyles()) node.innerHTML = html expect(html).toMatchInlineSnapshot( - `"
"`, + `"
"`, ) document.head.innerHTML += sheet.getStyleTags()