Skip to content

Commit

Permalink
consequently, thoroughness is unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
jswrenn committed Sep 13, 2021
1 parent 9032c99 commit 05b9d3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/web/js/check-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@
container_elt.appendChild(message_elt);

if (!hasValidity(examplar_results)) {
thoroughness_elt.textContent = "THOROUGHNESS UNKNOWN";
thoroughness_elt.textContent = "CONSEQUENTLY, THOROUGHNESS IS UNKNOWN";
validity_elt.textContent = "VALIDITY UNKNOWN";
validity_elt.classList.add("maybe-valid");
message_elt.textContent = "Tests in this file are not checked against other implementations.";
message_elt.textContent = "Tests in this file are not checked against other implementations. Consequently, we cannot provide you with validity and thoroughness feedback for these tests.";
return container_elt;
} else if (examplar_results.error) {
thoroughness_elt.textContent = "ERROR ENCOUNTERED";
Expand Down Expand Up @@ -228,7 +228,7 @@

} else {
// this is unreachable right now :/
thoroughness_elt.textContent = "THOROUGHNESS UNKNOWN";
thoroughness_elt.textContent = "CONSEQUENTLY, THOROUGHNESS IS UNKNOWN";
validity_elt.textContent = "INCORRECT";
validity_elt.classList.add("invalid");
container_elt.classList.add("invalid");
Expand Down

0 comments on commit 05b9d3d

Please sign in to comment.