Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangJian He committed Mar 3, 2023
1 parent db4bcad commit 2d983d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void testNamespaceExportImport() throws FileNotFoundException {
HttpStatusCodeException itemNotFoundException = new HttpClientErrorException(HttpStatus.NOT_FOUND);
when(itemService.loadItem(any(), any(), any(), any(), anyString())).thenThrow(itemNotFoundException);

FileInputStream fileInputStream = new FileInputStream("/tmp/apollo.zip");
FileInputStream fileInputStream = new FileInputStream(filePath);
ZipInputStream zipInputStream = new ZipInputStream(fileInputStream);

try {
Expand Down

0 comments on commit 2d983d3

Please sign in to comment.