feat: add cv benchmark workflow and admin visibility
This commit is contained in:
@@ -27,7 +27,7 @@ public sealed class JobApplicationsControllerTests
|
||||
Assert.NotNull(type);
|
||||
|
||||
var ctor = type!.GetConstructors().Single();
|
||||
var parameters = ctor.GetParameters().Select(x => x.Name).ToArray();
|
||||
var parameters = ctor.GetParameters().Select(x => x.Name).Where(x => x is not null).Select(x => x!).ToHashSet(StringComparer.OrdinalIgnoreCase);
|
||||
Assert.Contains("coverLetterText", parameters);
|
||||
Assert.Contains("notes", parameters);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user