Skip to content

Commit

Permalink
#1078 formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fmendezh committed Sep 13, 2024
1 parent ecfb06a commit ac238be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ private static void copyOccurrence(InterpretationPipelineOptions options) {
copyAndOverwrite(options, OCCURRENCE);
}

private static void copyAndOverwriteTables(InterpretationPipelineOptions opt, RecordType coreType) {
private static void copyAndOverwriteTables(
InterpretationPipelineOptions opt, RecordType coreType) {

copyAndOverwrite(opt, coreType, MEASUREMENT_OR_FACT_TABLE, Extension.MEASUREMENT_OR_FACT);
copyAndOverwrite(opt, coreType, IDENTIFICATION_TABLE, Extension.IDENTIFICATION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ public void hdfsPipelineTest(String rootTestFolder, InterpretationType.RecordTyp
assertFileExists(outputFn.apply("extendedmeasurementorfacttable"));
assertFileExists(outputFn.apply("germplasmmeasurementtrialtable"));

//Next two interpretations were not in the list of interpretation types param, --interpretationTypes
// Next two interpretations were not in the list of interpretation types param,
// --interpretationTypes
assertFileNotExists(outputFn.apply("permittable"));
assertFileNotExists(outputFn.apply("loantable"));
}
Expand Down Expand Up @@ -207,7 +208,7 @@ public void singleHdfsPipelineTest(

assertFile(OccurrenceHdfsRecord.class, outputFn.apply(recordType.name().toLowerCase()));

//Tables were not requested in the interpretation types
// Tables were not requested in the interpretation types
assertFileNotExists(outputFn.apply("measurementorfacttable"));
assertFileNotExists(outputFn.apply("extendedmeasurementorfacttable"));
assertFileNotExists(outputFn.apply("germplasmmeasurementtrialtable"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ public void pipelineAllTest() throws Exception {
assertFileExists(outputFn.apply("audubontable"));
assertFileExists(outputFn.apply("extendedmeasurementorfacttable"));

//Next two interpretations were not in the list of interpretation types param, --interpretationTypes
// Next two interpretations were not in the list of interpretation types param,
// --interpretationTypes
assertFileNotExists(outputFn.apply("permittable"));
assertFileNotExists(outputFn.apply("loantable"));
}
Expand Down

0 comments on commit ac238be

Please sign in to comment.