Skip to content

Commit

Permalink
Trim Async suffix (#14407)
Browse files Browse the repository at this point in the history
Co-authored-by: Vincent Jacquet <vjacquet@wmcsoft.com>
  • Loading branch information
vjacquet and vjacquet committed Sep 29, 2023
1 parent 9a76299 commit d743d5f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, o

if (binderName.EndsWith("Async", StringComparison.Ordinal))
{
binderName = binder.Name[^"Async".Length..];
binderName = binder.Name[..^"Async".Length];
}

result = ShapeFactoryExtensions
Expand Down
9 changes: 9 additions & 0 deletions test/OrchardCore.Tests/DisplayManagement/ShapeFactoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@ public async Task CallSyntax()
Assert.Equal("Foo", metadata.Type);
}

[Fact]
public async Task CallSyntaxAsync()
{
dynamic factory = _serviceProvider.GetService<IShapeFactory>();
var foo = await factory.FooAsync();
ShapeMetadata metadata = foo.Metadata;
Assert.Equal("Foo", metadata.Type);
}

[Fact]
public async Task CallInitializer()
{
Expand Down

0 comments on commit d743d5f

Please sign in to comment.