Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
userpj committed Dec 31, 2024
1 parent 1d222c7 commit 57e070e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ public Dataset(String secretKey, String datasetId) {
this.datasetId = datasetId;
}

public void setDatasetId(String datasetId) {
this.datasetId = datasetId;
}

/**
* 创建数据集
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public void testCreateDataset() throws IOException, AppBuilderServerException {
assertNotNull(datasetId);
} catch (Exception e) {
datasetId = System.getenv("DATASET_ID_V3");
dataset.setDatasetId(datasetId);
}

String filePath = "src/test/java/com/baidubce/appbuilder/files/test.pdf";
Expand Down

0 comments on commit 57e070e

Please sign in to comment.