fix build

This commit is contained in:
Shannon
2021-03-05 15:35:20 +11:00
parent df333ec8cb
commit 283130e349

View File

@@ -257,7 +257,7 @@ namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Scoping
Assert.AreSame(scope, ((Scope)nested).ParentScope);
// it's moved over to call context
ScopeStack<IScope> callContextScope = CallContext<ScopeStack<IScope>>.GetData(ScopeProvider.ScopeItemKey);
ConcurrentStack<IScope> callContextScope = CallContext<ConcurrentStack<IScope>>.GetData(ScopeProvider.ScopeItemKey);
Assert.IsNotNull(callContextScope);
Assert.AreEqual(2, callContextScope.Count);
}