Skip to content

Commit fe933d8

Browse files
committed
fix: test assembly paths
Signed-off-by: jbrinkman <[email protected]>
1 parent 49c35de commit fe933d8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/DotNetApiDiff.Tests/Integration/TypeMappingIntegrationTests.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ public TypeMappingIntegrationTests(ITestOutputHelper output)
2828
_output = output;
2929

3030
// Get the test assembly paths
31-
var testAssemblyDir = Path.Combine(
32-
Path.GetDirectoryName(typeof(TypeMappingIntegrationTests).Assembly.Location)!,
33-
"..", "..", "..", "..", "TestAssemblies", "bin", "Debug", "net8.0");
31+
// var testAssemblyDir = Path.Combine(
32+
// Path.GetDirectoryName(typeof(TypeMappingIntegrationTests).Assembly.Location)!,
33+
// "..", "..", "..", "..", "TestAssemblies", "bin", "Debug", "net8.0");
34+
var testAssemblyDir = Path.Combine(Directory.GetCurrentDirectory(), "TestData");
3435

3536
_testAssemblyV1Path = Path.Combine(testAssemblyDir, "TestAssemblyV1.dll");
3637
_testAssemblyV2Path = Path.Combine(testAssemblyDir, "TestAssemblyV2.dll");

0 commit comments

Comments
 (0)