Skip to content

Commit af5cddf

Browse files
authored
test: UnicodeLogfile test was using the wrong fixture (#2119)
1 parent da9a51c commit af5cddf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/Agent/IntegrationTests/ContainerApplications/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ services:
6767
service: smoketestapp
6868
build:
6969
dockerfile: SmokeTestApp/Dockerfile.amazon
70-
LinuxUnicodeLogFileApp:
70+
LinuxUnicodeLogfileTestApp:
7171
extends:
7272
file: docker-compose-smoketestapp.yml
7373
service: smoketestapp

tests/Agent/IntegrationTests/ContainerIntegrationTests/LinuxUnicodeLogFileTest.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ namespace ContainerIntegrationTests
1616
/// would be created by the test application, with the profiler change, the test transaction should be
1717
/// created successfully.
1818
/// </summary>
19-
public class LinuxUnicodeLogFileTest : NewRelicIntegrationTest<DebianX64SmokeTestFixture>
19+
public class LinuxUnicodeLogFileTest : NewRelicIntegrationTest<LinuxUnicodeLogFileTestFixture>
2020
{
21-
private readonly DebianX64SmokeTestFixture _fixture;
21+
private readonly LinuxUnicodeLogFileTestFixture _fixture;
2222

23-
public LinuxUnicodeLogFileTest(DebianX64SmokeTestFixture fixture, ITestOutputHelper output) : base(fixture)
23+
public LinuxUnicodeLogFileTest(LinuxUnicodeLogFileTestFixture fixture, ITestOutputHelper output) : base(fixture)
2424
{
2525
_fixture = fixture;
2626
_fixture.TestLogger = output;

0 commit comments

Comments
 (0)