Skip to content

Commit

Permalink
docs: change inline comments in unit tests
Browse files Browse the repository at this point in the history
Co-authored-by: chgl <[email protected]>
  • Loading branch information
pcvolkmer and chgl committed Aug 30, 2024
1 parent 954005c commit 8c3a45e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ void convertObdsDateToDateTimeTypeShouldThrowExceptionOnUnparsableDateString() {
"1234567890,123456789", // Max 9 digits, remove last digit '0'
"1234567891,123456789", // Max 9 digits, remove last digit '1'
"0000012345,0000012345", // Not mathching pattern - keep as is
"G1234,G1234", // Erlangen: Not mathching pattern - keep as is
"G123456,G123456", // Erlangen: Not mathching pattern - keep as is
"G123456789,G12345678", // Erlangen: return Non-zero and 8 digits
"G1234,G1234", // Not mathching pattern - keep as is
"G123456,G123456", // Not matching pattern - keep as is
"G123456789,G12345678", // return Non-zero and 8 digits
})
void convertPatientIdWithDefaultPattern(String input, String output) {
var actual = ObdsToFhirMapper.convertId(input);
Expand Down

0 comments on commit 8c3a45e

Please sign in to comment.