Skip to content

Commit

Permalink
CLDR-8823 Correct pathheader where chinese was missing
Browse files Browse the repository at this point in the history
- Also update a test err message for clarity and to make actionable
  • Loading branch information
srl295 committed Jul 12, 2024
1 parent 1195c9b commit 0f87b89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# We don't list roc, etc here because their months are hidden.
%G = (gregorian)
# all others use M## form months.
%O = (coptic|dangi|ethiopic|hebrew|indian|islamic|persian)
%O = (chinese|coptic|dangi|ethiopic|hebrew|indian|islamic|persian)
%P = (future|past)
%R = (gregorian|buddhist|coptic|ethiopic|ethiopic-amete-alem|hebrew|indian|islamic|japanese|persian|roc)
%S = ([^/]*+)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,9 @@ public void TestCoverage() {
if (hidePathHeader != hideCoverage) {
String message = "PathHeader: " + status + ", Coverage: " + level + ": " + path;
if (hidePathHeader && !hideCoverage) {
errln(message);
errln(
message
+ " - PathHeader says to HIDE this, but it visible at <comprehensive coverage. Fix PathHeader to show, or fix coverage.");
} else if (!hidePathHeader && hideCoverage) {
logln(message);
}
Expand Down

0 comments on commit 0f87b89

Please sign in to comment.