From 3da4035bde16200b5bd910f5e9773cf5575c2361 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Sun, 19 Aug 2018 15:54:40 +0200 Subject: [PATCH] Tests fixed --- .../Contents/GraphQL/Types/AllTypes.cs | 2 +- .../Tags/GrainTagServiceTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AllTypes.cs b/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AllTypes.cs index f9f25ad41..813d62b93 100644 --- a/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/AllTypes.cs +++ b/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(); diff --git a/tests/Squidex.Domain.Apps.Entities.Tests/Tags/GrainTagServiceTests.cs b/tests/Squidex.Domain.Apps.Entities.Tests/Tags/GrainTagServiceTests.cs index c3667ee77..ec40dc92b 100644 --- a/tests/Squidex.Domain.Apps.Entities.Tests/Tags/GrainTagServiceTests.cs +++ b/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(); }