Skip to content

Commit

Permalink
test: fix call rendering test
Browse files Browse the repository at this point in the history
  • Loading branch information
R-unic committed Jan 7, 2025
1 parent 979b6eb commit bf0fb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RobloxCS.Tests/RenderingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public void Renders_Calls()
var arguments = AstUtility.CreateArgumentList([new Literal("69"), new Literal("420"), AstUtility.String("abc")]);
var call = new Call(new IdentifierName("bigMen"), arguments);
var output = Render(call);
Assert.Equal("bigMen(69, 420, \"abc\"", output);
Assert.Equal("bigMen(69, 420, \"abc\")", output);
}

[Fact]
Expand Down

0 comments on commit bf0fb4d

Please sign in to comment.