Skip to content
This repository has been archived by the owner on Oct 15, 2018. It is now read-only.

Commit

Permalink
modify failing const-test in favor of #222
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelneu committed Jan 6, 2017
1 parent fa51b8b commit 319ed2e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/tests/languageTests/variable/variableTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let myMultilineLet1: number,
myMultilineLet2;
const myConst: number;
const myMultilineConst1 = 10,
const myMultilineConst1: number,
myMultilineConst2: string;
`;

Expand Down Expand Up @@ -93,8 +93,7 @@ const myMultilineConst1 = 10,
}, {
name: "myMultilineConst1",
declarationType: VariableDeclarationType.Const,
type: { text: "number" },
defaultExpression: { text: "10" }
type: { text: "number" }
}, {
name: "myMultilineConst2",
declarationType: VariableDeclarationType.Const,
Expand Down

0 comments on commit 319ed2e

Please sign in to comment.