Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmiei committed Sep 12, 2024
1 parent d20dadf commit 12a8d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/csharpTranspiler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit 12a8d47

Please sign in to comment.