Skip to content

Commit

Permalink
Per #2682, fix bug in the order of columns in listHeaderCols.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Sep 15, 2023
1 parent a4db9c6 commit c92898b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/test_unit/R_test/test_util.R
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ compareDiff = function(file1, file2, verb=0){
else if( 1 <= verb ){ cat("passed diff\n"); }
}

listHeaderCols = c("VERSION", "DESC", "MODEL",
listHeaderCols = c("VERSION", "MODEL", "DESC",
"FCST_LEAD", "FCST_VALID_BEG", "FCST_VALID_END",
"OBS_LEAD", "OBS_VALID_BEG", "OBS_VALID_END",
"FCST_VAR", "FCST_UNITS", "FCST_LEV",
Expand Down

0 comments on commit c92898b

Please sign in to comment.