Skip to content

Commit

Permalink
changed N_A to failed if body not found in checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mattebit committed Sep 29, 2023
1 parent e8ca253 commit a7910ed
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tool/src/main/java/migt/Check.java
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@ private boolean execute_http(HTTPReqRes message,
}

if (msg_str.length() == 0) {
applicable = true;
if (this.op != null && op == IS_NOT_PRESENT) {
return true;
}
return false;
}

Expand Down

0 comments on commit a7910ed

Please sign in to comment.