Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsage1 committed Nov 21, 2023
1 parent 038485c commit 15d12f2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void SimpleChallengeGlobalException_ShouldReturnStatusTypeTitleDetail_Whe
// Create an instance of SimpleChallengeGlobalException using the no-args constructor
SimpleChallengeGlobalException exception = new SimpleChallengeGlobalException();

//confirm that not passing args leads to null arguments
// confirm that not passing args leads to null arguments
assertThat(exception.getTitle()).isNull();
assertThat(exception.getType()).isNull();
assertThat(exception.getStatus()).isNull();
Expand All @@ -67,7 +67,7 @@ public void SimpleChallengeGlobalException_ShouldSetArgs_WhenArgsPassed() {
exception.setStatus(status);
exception.setDetail(detail);

//confirm that the args were passed
// confirm that the args were passed
assertThat(exception.getType()).isEqualTo(type);
assertThat(exception.getTitle()).isEqualTo(title);
assertThat(exception.getStatus()).isEqualTo(status);
Expand Down

0 comments on commit 15d12f2

Please sign in to comment.