Skip to content

Commit

Permalink
SCRUM-3952: fix indentation and remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
abecerra committed Sep 19, 2024
1 parent 4efba46 commit d28cc2e
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,6 @@ public void init() {
public void expressionBulkUploadAllFields() throws Exception {
loadRequiredEntities();
checkSuccessfulBulkLoad(expressionBulkPostEndpoint, expressionTestFilePath + "AF_01_all_fields.json");
// System.out.println(RestAssured.given().when()
// .header("Content-Type", "application/json")
// .body("{}")
// .post(expressionFindEndpoint)
// .then()
// .statusCode(200)
// .extract().asPrettyString());

RestAssured.given().when()
.header("Content-Type", "application/json")
.body("{}")
Expand Down Expand Up @@ -172,15 +164,12 @@ private void loadRequiredEntities() throws Exception {
createVocabularyTerm(stageUberonTermVocabulary, stageUberonTermId, false);
createAnatomicalTerm(anatomicalStructureTermId, "AnatomicalStructureTermTest");
createAnatomicalTerm(anatomicalSubstructureTermId, "AnatomicalSubStructureTermTest");

createOntologyTerm(anatomicalStructureQualifierTermId, "anatomicalSubstructureQualifierTermId", false);
createOntologyTerm(anatomicalSubstructureQualifierTermId, "anatomicalSubstructureQualifierTermId", false);
createOntologyTerm(cellularComponentQualifierTermId, "anatomicalSubstructureQualifierTermId", false);

createVocabularyTerm(spatialExpressionQualififerVocabulary, anatomicalStructureQualifierTermId, false);
createVocabularyTerm(spatialExpressionQualififerVocabulary, anatomicalSubstructureQualifierTermId, false);
createVocabularyTerm(spatialExpressionQualififerVocabulary, cellularComponentQualifierTermId, false);

List<String> subsets = new ArrayList<String>();
subsets.add("goslim_agr");
GOTerm isaAncestor = createGoTerm(cellularComponentRibbonTermId, "CellularComponentRibbonTermTest", false, subsets);
Expand Down

0 comments on commit d28cc2e

Please sign in to comment.