Skip to content

Commit

Permalink
test: prevent concurrent collections access (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
Seddryck authored Jul 29, 2024
1 parent 54d5ee3 commit ea8b5a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Expressif.Testing.Functions.Introspection;

[TestFixture]
[FixtureLifeCycle(LifeCycle.SingleInstance)]
[Parallelizable(scope: ParallelScope.Fixtures)]
[NonParallelizable]
public class FunctionIntrospectorTest
{
private IEnumerable<FunctionInfo> Infos { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Expressif.Testing.Predicates.Introspection;

[TestFixture]
[FixtureLifeCycle(LifeCycle.SingleInstance)]
[Parallelizable(scope: ParallelScope.Fixtures)]
[NonParallelizable]
public class PredicateIntrospectorTest
{
private IEnumerable<PredicateInfo> Infos { get; set; }
Expand Down

0 comments on commit ea8b5a2

Please sign in to comment.