From 8c06e270cd97a686fc8fdd6605f6938cd2c7621e Mon Sep 17 00:00:00 2001 From: "alan.invents" Date: Thu, 13 Feb 2020 18:54:00 -0500 Subject: [PATCH] Added missing comma --- src/julia/julia.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/julia/julia.test.ts b/src/julia/julia.test.ts index 6e58561a..67060c0a 100644 --- a/src/julia/julia.test.ts +++ b/src/julia/julia.test.ts @@ -20,7 +20,7 @@ testTokenization('julia', [ }], [{ - line: "b(c) = 2c" + line: "b(c) = 2c", tokens: [ {startIndex: 0, type: "keyword.flow.julia"}, {startIndex: 1, type: "delimiter.parenthesis.julia"},