Skip to content

Commit

Permalink
always fail on internal errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Niessner authored and Al Niessner committed Nov 7, 2024
1 parent 85f6a7c commit 9de6254
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/java/cucumber/StepDefs.java
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,9 @@ public void produced_output_from_validate_command_should_be_similar_to_reference
+ this.refOutputValue);

// Compare the count from this test with the this.messageCount from test table.
assertEquals(count, this.messageCount, this.messageText + " " + reportJson.toString());
assertEquals(this.messageCount, count, this.messageText + " " + reportJson.toString());
assertEquals(0, this.getMessageCountBasedOnProblemType("INTERNAL_ERROR,ARRAY_INTERNAL_ERROR,TABLE_INTERNAL_ERROR", reportJson),
"Required that internal errors do not occur.");

// System.out.println("produced_output_from_validate_command_should_be_similar_to_reference_ref_output_value_or_no_error_reported()
// count = [" + count + "]");
Expand Down

0 comments on commit 9de6254

Please sign in to comment.