diff --git a/packages/happy-dom/test/window/BrowserWindow.test.ts b/packages/happy-dom/test/window/BrowserWindow.test.ts index c8062d9cf..b5422044a 100644 --- a/packages/happy-dom/test/window/BrowserWindow.test.ts +++ b/packages/happy-dom/test/window/BrowserWindow.test.ts @@ -599,7 +599,7 @@ describe('BrowserWindow', () => { document.body.appendChild(parent); expect(computedStyle.border).toBe('1px solid #000'); - expect(computedStyle.font).toBe('14px "Tahoma"'); + expect(computedStyle.font).toBe('14px Tahoma'); expect(computedStyle.color).toBe(''); }); @@ -638,7 +638,7 @@ describe('BrowserWindow', () => { document.body.appendChild(parent); expect(computedStyle.border).toBe('1px solid #000'); - expect(computedStyle.font).toBe('14px "Tahoma"'); + expect(computedStyle.font).toBe('14px Tahoma'); expect(computedStyle.color).toBe(''); });