Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
EmanueleBonofiglio committed Dec 19, 2024
1 parent 1717237 commit ef885bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TemplateEngineTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export function templateEngineTest(request, body) {
if(response.status > 202)console.log("http response value is: "+response.status+"for request: "+requestId);

check(response, {
'status templateEngine is KO': (response) => response.status > 202,
'status templateEngine is KO': (response) => response.status > 200,
});

check(response, {
'status templateEngine is 202': (response) => response.status === 202,
'status templateEngine is 200': (response) => response.status === 200,
});

}
Expand Down

0 comments on commit ef885bc

Please sign in to comment.