Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Rocket.Surgery.Extensions.Testing.FakeItEasy from 3.0.1 to 3.2.1 #91

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<PackageReference Update="Terminal.Gui" Version="0.24.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Rocket.Surgery.Extensions.Testing.FakeItEasy" Version="3.0.1" />
<PackageReference Update="Rocket.Surgery.Extensions.Testing.FakeItEasy" Version="3.2.1" />
<PackageReference Update="Bogus" Version="28.4.1" />
<PackageReference Update="coverlet.collector" Version="1.1.0" />
<PackageReference Update="coverlet.msbuild" Version="2.7.0" />
Expand Down
3 changes: 2 additions & 1 deletion test/CommandLine.Tests/CommandLineBuilderTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
Expand Down Expand Up @@ -280,6 +280,7 @@ public async Task<int> OnExecuteAsync(IService service)
public void SupportsInjection_Without_Creating_The_SubContainer()
{
AutoFake.Provide<IAssemblyProvider>(new TestAssemblyProvider());
AutoFake.Provide<IServiceProvider>(A.Fake<IServiceProvider>());
var builder = AutoFake.Resolve<CommandLineBuilder>();

var sp = AutoFake.Resolve<IServiceProvider>();
Expand Down