Skip to content
Prev Previous commit
Next Next commit
Update Fluid.Tests/StrictVariableTests.cs
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
sebastienros and Copilot authored Nov 1, 2025
commit abc0bf5f56f8be2ac079442a4358658749bc99f4
4 changes: 2 additions & 2 deletions Fluid.Tests/StrictVariableTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ namespace Fluid.Tests;
public class StrictVariableTests
{
#if COMPILED
private static FluidParser _parser = new FluidParser().Compile();
private static readonly FluidParser _parser = new FluidParser().Compile();
#else
private static FluidParser _parser = new FluidParser();
private static readonly FluidParser _parser = new FluidParser();
#endif

[Fact]
Expand Down