Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debug
  • Loading branch information
Flash0ver committed Feb 19, 2026
commit b47d64adec750dead1d0dcad6cc8fa2837841c42
10 changes: 5 additions & 5 deletions src/dotnet/Sentry.Cli.Tests/PathUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private static DirectoryInfo GetTestProjectDirectory([CallerFilePath] string? so

if (!testProject.Exists)
{
Assert.Fail("Test project not found.");
Assert.Fail($"Test project not found: {testProject}");
}

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

if (!project.Exists)
{
Assert.Fail("Launcher project not found.");
Assert.Fail($"Launcher project not found: {project}");
}

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

if (!artifacts.Exists)
{
Assert.Fail("Artifacts path not found.");
Assert.Fail($"Artifacts path not found: {artifacts}");
}

return artifacts;
Expand All @@ -64,7 +64,7 @@ private static DirectoryInfo GetBinaryDirectory()

if (!binary.Exists)
{
Assert.Fail("Binary path not found.");
Assert.Fail($"Binary path not found: {binary}");
}

return binary;
Expand All @@ -77,7 +77,7 @@ private static FileInfo GetPackageFile()

if (!package.Exists)
{
Assert.Fail("Package JSON not found.");
Assert.Fail($"Package JSON not found: {package}");
}

return package;
Expand Down
Loading