Skip to content

Commit b755d14

Browse files
committed
PR improvements
1 parent c6c438f commit b755d14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Editor/ObservableListTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public interface IMockCaller<in T>
3131
public void Init()
3232
{
3333
_caller = Substitute.For<IMockCaller<int>>();
34-
_list = Substitute.For<List<int>>();
34+
_list = new List<int>();
3535
_observableList = new ObservableList<int>(_list);
3636
_observableResolverList = new ObservableResolverList<int>(() => _list);
3737
}

0 commit comments

Comments
 (0)