From 95623535e18da5869c613da42b5faddb7917d41e Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Wed, 20 Jan 2016 16:58:53 -0800 Subject: [PATCH] Fixing fourslash test --- .../cases/fourslash/quickInfoOnObjectLiteralWithOnlyGetter.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cases/fourslash/quickInfoOnObjectLiteralWithOnlyGetter.ts b/tests/cases/fourslash/quickInfoOnObjectLiteralWithOnlyGetter.ts index a2e783d9ce0..53f5e6988b7 100644 --- a/tests/cases/fourslash/quickInfoOnObjectLiteralWithOnlyGetter.ts +++ b/tests/cases/fourslash/quickInfoOnObjectLiteralWithOnlyGetter.ts @@ -9,7 +9,7 @@ ////var /*2*/x = point./*3*/x; goTo.marker('1'); -verify.quickInfoIs("function makePoint(x: number): {\n readonly x: number;\n}", undefined); +verify.quickInfoIs("function makePoint(x: number): {\n x: number;\n}", undefined); goTo.marker('2'); verify.quickInfoIs("var x: number", undefined); @@ -18,4 +18,4 @@ goTo.marker('3'); verify.memberListContains("x", "(property) x: number", undefined); goTo.marker('4'); -verify.quickInfoIs("var point: {\n readonly x: number;\n}", undefined); +verify.quickInfoIs("var point: {\n x: number;\n}", undefined);