Skip to content

Commit

Permalink
test: UnicodeLogfile test was using the wrong fixture (#2119)
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr authored Dec 5, 2023
1 parent da9a51c commit af5cddf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
service: smoketestapp
build:
dockerfile: SmokeTestApp/Dockerfile.amazon
LinuxUnicodeLogFileApp:
LinuxUnicodeLogfileTestApp:
extends:
file: docker-compose-smoketestapp.yml
service: smoketestapp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ namespace ContainerIntegrationTests
/// would be created by the test application, with the profiler change, the test transaction should be
/// created successfully.
/// </summary>
public class LinuxUnicodeLogFileTest : NewRelicIntegrationTest<DebianX64SmokeTestFixture>
public class LinuxUnicodeLogFileTest : NewRelicIntegrationTest<LinuxUnicodeLogFileTestFixture>
{
private readonly DebianX64SmokeTestFixture _fixture;
private readonly LinuxUnicodeLogFileTestFixture _fixture;

public LinuxUnicodeLogFileTest(DebianX64SmokeTestFixture fixture, ITestOutputHelper output) : base(fixture)
public LinuxUnicodeLogFileTest(LinuxUnicodeLogFileTestFixture fixture, ITestOutputHelper output) : base(fixture)
{
_fixture = fixture;
_fixture.TestLogger = output;
Expand Down

0 comments on commit af5cddf

Please sign in to comment.