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 3113aa5 commit 83f9118Copy full SHA for 83f9118
test/UnitTests/Data/DefaultEntityRepository_Tests.cs
@@ -89,13 +89,10 @@ private DefaultEntityRepository<TodoItem> GetRepository()
89
.Setup(m => m.RelationshipsToUpdate)
90
.Returns(_relationshipsToUpdate);
91
92
- _jsonApiContextMock
93
- .Setup(m => m.GetDbContextResolver())
94
- .Returns(_contextResolverMock.Object);
95
-
96
return new DefaultEntityRepository<TodoItem>(
97
_loggFactoryMock.Object,
98
- _jsonApiContextMock.Object);
+ _jsonApiContextMock.Object,
+ _contextResolverMock.Object);
99
}
100
101
0 commit comments