Skip to content

Commit b47d64a

Browse files
committed
debug
1 parent 591ead4 commit b47d64a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/dotnet/Sentry.Cli.Tests/PathUtilities.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private static DirectoryInfo GetTestProjectDirectory([CallerFilePath] string? so
2424

2525
if (!testProject.Exists)
2626
{
27-
Assert.Fail("Test project not found.");
27+
Assert.Fail($"Test project not found: {testProject}");
2828
}
2929

3030
Assert.NotNull(testProject.Directory);
@@ -38,7 +38,7 @@ private static DotnetProject GetLauncherProject()
3838

3939
if (!project.Exists)
4040
{
41-
Assert.Fail("Launcher project not found.");
41+
Assert.Fail($"Launcher project not found: {project}");
4242
}
4343

4444
return new DotnetProject(project);
@@ -51,7 +51,7 @@ private static DirectoryInfo GetArtifactsDirectory()
5151

5252
if (!artifacts.Exists)
5353
{
54-
Assert.Fail("Artifacts path not found.");
54+
Assert.Fail($"Artifacts path not found: {artifacts}");
5555
}
5656

5757
return artifacts;
@@ -64,7 +64,7 @@ private static DirectoryInfo GetBinaryDirectory()
6464

6565
if (!binary.Exists)
6666
{
67-
Assert.Fail("Binary path not found.");
67+
Assert.Fail($"Binary path not found: {binary}");
6868
}
6969

7070
return binary;
@@ -77,7 +77,7 @@ private static FileInfo GetPackageFile()
7777

7878
if (!package.Exists)
7979
{
80-
Assert.Fail("Package JSON not found.");
80+
Assert.Fail($"Package JSON not found: {package}");
8181
}
8282

8383
return package;

0 commit comments

Comments
 (0)