Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public record FindTeachersRequest

public enum FindTeachersFindBy
{
LastNameAndDateOfBirth = 1
LastNameAndDateOfBirth = 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public record FindPersonRequest

public enum FindPersonFindBy
{
LastNameAndDateOfBirth = 1
LastNameAndDateOfBirth = 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public record FindPersonRequest

public enum FindPersonFindBy
{
LastNameAndDateOfBirth = 1
LastNameAndDateOfBirth = 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public record FindPersonRequest

public enum FindPersonFindBy
{
LastNameAndDateOfBirth = 1
LastNameAndDateOfBirth = 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public record FindPersonRequest

public enum FindPersonFindBy
{
LastNameAndDateOfBirth = 1
LastNameAndDateOfBirth = 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public record FindPersonRequest

public enum FindPersonFindBy
{
LastNameAndDateOfBirth = 1
LastNameAndDateOfBirth = 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public record FindPersonRequest

public enum FindPersonFindBy
{
LastNameAndDateOfBirth = 1
LastNameAndDateOfBirth = 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public async Task Get_ClientDoesNotHavePermission_ReturnsForbidden(string[] role
}

[Theory]
[InlineData("", "Invalid matching policy.")]
[InlineData("", "The value '' is invalid.")]
[InlineData("BadFindBy", "The value 'BadFindBy' is not valid for FindBy.")]
public async Task Get_InvalidFindBy_ReturnsError(string findBy, string expectedErrorMessage)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public async Task Get_ClientDoesNotHavePermission_ReturnsForbidden(string[] role
}

[Theory]
[InlineData("", "Invalid matching policy.")]
[InlineData("", "The value '' is invalid.")]
[InlineData("BadFindBy", "The value 'BadFindBy' is not valid for FindBy.")]
public async Task Get_InvalidFindBy_ReturnsError(string findBy, string expectedErrorMessage)
{
Expand Down
Loading