Skip to content

Commit

Permalink
Add forgotten SetupFixture necessary after the L10nSharp update (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonleenaylor authored Dec 2, 2024
1 parent 68d8d61 commit adaeec5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/LibFLExBridge-ChorusPluginTests/SetupFixture.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using L10NSharp;
using NUnit.Framework;

namespace LibFLExBridgeChorusPluginTests
{
[SetUpFixture]
public class SetupFixture
{
[OneTimeSetUp]
public void RunBeforeAnyTests()
{
LocalizationManager.StrictInitializationMode = false;
}
}
}

0 comments on commit adaeec5

Please sign in to comment.