Skip to content

Commit

Permalink
Fix bug from resolving conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
itsnotsherm authored Oct 15, 2024
1 parent 2cc8f19 commit 3055864
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void toModelType_invalidNric_throwsIllegalValueException() {
@Test
public void toModelType_nullNric_throwsIllegalValueException() {
JsonAdaptedPerson person = new JsonAdaptedPerson(VALID_NAME, VALID_PHONE, VALID_EMAIL, null,
VALID_ADDRESS, VALIR_REMARK, VALID_TAGS);
VALID_ADDRESS, VALID_REMARK, VALID_TAGS);
String expectedMessage = String.format(MISSING_FIELD_MESSAGE_FORMAT, Nric.class.getSimpleName());
assertThrows(IllegalValueException.class, expectedMessage, person::toModelType);
}
Expand Down

0 comments on commit 3055864

Please sign in to comment.