Skip to content

Commit

Permalink
php test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmiei committed Sep 13, 2024
1 parent 836558d commit fe85edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpTranspiler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ describe('php transpiling tests', () => {
});
test('should convert concat', () => {
const ts = "y.concat(z)";
const result = "array_merge($x, $y);";
const result = "array_merge($y, $y);";
const output = transpiler.transpilePhp(ts).content;
expect(output).toBe(result);
});
Expand Down

0 comments on commit fe85edf

Please sign in to comment.