Browse Source

Fix build errors.

pull/388/head
Sebastian Stehle 7 years ago
parent
commit
1e3b1403c4
  1. 2
      tests/Squidex.Web.Tests/CommandMiddlewares/EnrichWithSchemaIdCommandMiddlewareTests.cs

2
tests/Squidex.Web.Tests/CommandMiddlewares/EnrichWithSchemaIdCommandMiddlewareTests.cs

@ -50,6 +50,8 @@ namespace Squidex.Web.CommandMiddlewares
httpContext.Context().App = app;
var schema = A.Fake<ISchemaEntity>();
A.CallTo(() => schema.Id).Returns(schemaId.Id);
A.CallTo(() => schema.SchemaDef).Returns(new Schema(schemaId.Name));

Loading…
Cancel
Save