We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6c438f commit b755d14Copy full SHA for b755d14
Tests/Editor/ObservableListTest.cs
@@ -31,7 +31,7 @@ public interface IMockCaller<in T>
31
public void Init()
32
{
33
_caller = Substitute.For<IMockCaller<int>>();
34
- _list = Substitute.For<List<int>>();
+ _list = new List<int>();
35
_observableList = new ObservableList<int>(_list);
36
_observableResolverList = new ObservableResolverList<int>(() => _list);
37
}
0 commit comments