Skip to content

Commit

Permalink
Merge pull request #125 from docusign/budfix/fix-for-playwright-tests
Browse files Browse the repository at this point in the history
Added a fix for playwright test
  • Loading branch information
meihDS authored Nov 22, 2023
2 parents 1aba0b5 + b3d68f4 commit 9398da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/docusign/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private static void initFileSystem() {
try {
FileSystems.newFileSystem(new URI(""), Collections.emptyMap());
log.info("FileSystem initialized successfully");
} catch (FileSystemAlreadyExistsException | URISyntaxException | IOException e) {
} catch (Exception e) {
if (e instanceof FileSystemAlreadyExistsException) {
log.info("FileSystem is already initialized");
} else {
Expand Down

0 comments on commit 9398da1

Please sign in to comment.