Browse Source

Tests fixed

pull/311/head
Sebastian Stehle 8 years ago
parent
commit
3da4035bde
  1. 2
      src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AllTypes.cs
  2. 2
      tests/Squidex.Domain.Apps.Entities.Tests/Tags/GrainTagServiceTests.cs

2
src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AllTypes.cs

@ -20,7 +20,7 @@ namespace Squidex.Domain.Apps.Entities.Contents.GraphQL.Types
public static readonly IGraphType Guid = new GuidGraphType();
public static readonly IGraphType Date = new DateGraphType();
public static readonly IGraphType Date = new DateTimeGraphType();
public static readonly IGraphType Json = new JsonGraphType();

2
tests/Squidex.Domain.Apps.Entities.Tests/Tags/GrainTagServiceTests.cs

@ -60,7 +60,7 @@ namespace Squidex.Domain.Apps.Entities.Tags
{
await sut.GetExportableTagsAsync(appId, TagGroups.Assets);
A.CallTo(() => grain.GetTagsAsync())
A.CallTo(() => grain.GetExportableTagsAsync())
.MustHaveHappened();
}

Loading…
Cancel
Save