From 12a8d47a989882cf7de92b1ba12fe912f963a081 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Thu, 12 Sep 2024 12:23:31 +0100 Subject: [PATCH] fix test --- tests/csharpTranspiler.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/csharpTranspiler.test.ts b/tests/csharpTranspiler.test.ts index 6870f52..e3ee2c3 100644 --- a/tests/csharpTranspiler.test.ts +++ b/tests/csharpTranspiler.test.ts @@ -931,7 +931,7 @@ describe('csharp transpiling tests', () => { }); test('should convert concat', () => { const ts = "y.concat(z)"; - const result = "((string)y).Concat(x).ToList()"; + const result = "((string)y).Concat(z).ToList();"; const output = transpiler.transpileCSharp(ts).content; expect(output).toBe(result); });