diff --git a/packages/sanity/src/core/studio/Studio.test.tsx b/packages/sanity/src/core/studio/Studio.test.tsx
index 47ec351045f..94d5a40d824 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()