Skip to content

Commit 968f282

Browse files
committed
2015 - SF
1 parent 648c5eb commit 968f282

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

server/libs/modules/components/google/google-sheets/src/main/java/com/bytechef/component/google/sheets/action/GoogleSheetsCreateSpreadsheetAction.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ public static Object perform(
6868

6969
Sheets sheets = GoogleServices.getSheets(connectionParameters);
7070

71-
Spreadsheet newSpreadsheet = sheets
72-
.spreadsheets()
71+
Spreadsheet newSpreadsheet = sheets.spreadsheets()
7372
.create(spreadsheet)
7473
.execute();
7574

server/libs/modules/components/google/google-sheets/src/test/java/com/bytechef/component/google/sheets/action/GoogleSheetsCreateSpreadsheetActionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ void performWhenFolderIdIsNotSet() throws Exception {
7474
when(mockCreateRequest.execute())
7575
.thenReturn(newSpreadSheet);
7676

77-
Object result =
78-
GoogleSheetsCreateSpreadsheetAction.perform(mockedParameters, mockedParameters, mockedActionContext);
77+
Object result = GoogleSheetsCreateSpreadsheetAction.perform(
78+
mockedParameters, mockedParameters, mockedActionContext);
7979

8080
assertEquals(newSpreadSheet, result);
8181

0 commit comments

Comments
 (0)