Skip to content

Commit adaeec5

Browse files
Add forgotten SetupFixture necessary after the L10nSharp update (#417)
1 parent 68d8d61 commit adaeec5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using L10NSharp;
2+
using NUnit.Framework;
3+
4+
namespace LibFLExBridgeChorusPluginTests
5+
{
6+
[SetUpFixture]
7+
public class SetupFixture
8+
{
9+
[OneTimeSetUp]
10+
public void RunBeforeAnyTests()
11+
{
12+
LocalizationManager.StrictInitializationMode = false;
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)