Skip to content

Commit

Permalink
fix: usings missing from AutoFixtureBase (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
RLittlesII authored Mar 28, 2024
1 parent 214dc54 commit da300be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Testing.AutoFixtures/AutoFixtureBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ namespace Rocket.Surgery.Extensions.Testing.AutoFixtures;

internal static class AutoFixtureBase
{
public const string Source = @"using System.Collections.ObjectModel;
public const string Source = @"using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Rocket.Surgery.Extensions.Testing.AutoFixtures
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//HintName: Rocket.Surgery.Extensions.Testing.AutoFixtures/Rocket.Surgery.Extensions.Testing.AutoFixtures.AutoFixtureGenerator/AutoFixtureBase.g.cs
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;

namespace Rocket.Surgery.Extensions.Testing.AutoFixtures
Expand Down

0 comments on commit da300be

Please sign in to comment.