Skip to content

Commit

Permalink
Fixed bug discovered by automated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mollybsmith-noaa committed Dec 1, 2023
1 parent 8ae9121 commit 42486da
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,6 @@ const getDataForDiffContour = function (
case "95th percentile -- t-test with infinite degrees of freedom (CONTINUOUS VARIABLES ONLY)":
case "standard":
case "assume infinite degrees of freedom":
default:
if (minuendIsScalar && subtrahendIsScalar) {
isDiffSignificant = matsDataUtils.checkDiffContourSignificance(
minuendData.z[minuendYIndex][minuendXIndex],
Expand All @@ -1310,6 +1309,9 @@ const getDataForDiffContour = function (
);
}
break;
default:
// no significance option for this plot
break;
}
}
diffMinDate =
Expand Down

0 comments on commit 42486da

Please sign in to comment.