Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Jun 5, 2024
1 parent 88f8364 commit 1ca8148
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/XUnit.Hosting/TestHostBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public abstract class TestHostBase<TFixture> : IDisposable
/// Initializes a new instance of the <see cref="TestHostBase{TFixture}"/> class.
/// </summary>
/// <param name="output">Represents a class which can be used to provide test output</param>
/// <param name="ficture"> The collection test fixture.</param>
protected TestHostBase(ITestOutputHelper output, TFixture ficture)
/// <param name="fixture"> The collection test fixture.</param>
protected TestHostBase(ITestOutputHelper output, TFixture fixture)
{
Output = output;
Fixture = ficture;
Fixture = fixture;
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions test/XUnit.Hosting.Tests/DatabaseInitializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public DatabaseInitializer(ILogger<DatabaseInitializer> logger)

public static bool IsStarted = false;

public static bool IsStoped = false;
public static bool IsStopped = false;

public Task StartAsync(CancellationToken cancellationToken)
{
Expand All @@ -28,7 +28,7 @@ public Task StopAsync(CancellationToken cancellationToken)
{
_logger.LogInformation("Initialize Database StopAsync()");

IsStoped = true;
IsStopped = true;
return Task.CompletedTask;
}
}
4 changes: 2 additions & 2 deletions test/XUnit.Hosting.Tests/DatabaseTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ namespace XUnit.Hosting.Tests;
[Collection(DatabaseCollection.CollectionName)]
public abstract class DatabaseTestBase : TestHostBase<DatabaseFixture>
{
protected DatabaseTestBase(ITestOutputHelper output, DatabaseFixture ficture)
: base(output, ficture)
protected DatabaseTestBase(ITestOutputHelper output, DatabaseFixture fixture)
: base(output, fixture)
{
}
}

0 comments on commit 1ca8148

Please sign in to comment.