Skip to content

Commit

Permalink
Consistent error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
si618 committed Mar 11, 2024
1 parent 17975c3 commit 7337515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Benchmarks.App/Commands/BenchmarkSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public override ValidationResult Validate()

if (Reflection.GetBenchmarkTypes().All(type => type.Name != Name))
{
return ValidationResult.Error($"Benchmark not found {Name}");
return ValidationResult.Error($"Benchmark not found '{Name}'");
}

return ValidationResult.Success();
Expand Down

0 comments on commit 7337515

Please sign in to comment.