Skip to content

Commit 9c7303a

Browse files
authored
Merge pull request #50 from Umplify/issue_48
Reverting changes in #48
2 parents 9f419b3 + 0f7e6d5 commit 9c7303a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Xunit.Microsoft.DependencyInjection.ExampleTests.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@
3333
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3434
</Content>
3535
</ItemGroup>
36+
<ItemGroup>
37+
<ProjectReference Include="..\..\src\Xunit.Microsoft.DependencyInjection.csproj" />
38+
</ItemGroup>
3639
</Project>

src/Abstracts/TestBed.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Xunit.Microsoft.DependencyInjection.Abstracts
66
{
7-
public abstract class TestBed<TFixture> : IDisposable, ICollectionFixture<TFixture>, IAsyncDisposable
7+
public abstract class TestBed<TFixture> : IDisposable, IClassFixture<TFixture>, IAsyncDisposable
88
where TFixture: class
99
{
1010
protected readonly ITestOutputHelper _testOutputHelper;

0 commit comments

Comments
 (0)