Skip to content

Commit 68223e3

Browse files
authored
fix(testAllFolders): Updated Kotlin test after API change for all_folders (#1568)
https://cloud.google.com/looker/docs/reference/looker-api/latest/methods/Folder/all_folders was changed in the last 6 months to return `FolderBase` instead of `Folder` Updating test to reflect API change. Fixes #1567 🦕
1 parent 100e3c9 commit 68223e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlin/src/test/TestMethods.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ class TestMethods {
295295

296296
@Test
297297
fun testAllFolders() {
298-
testAll<Folder, String, Folder>(
298+
testAll<FolderBase, String, FolderBase>(
299299
{ sdk.all_folders() },
300300
{ item -> item.id!! },
301301
{ id, fields -> sdk.folder(id, fields) },

0 commit comments

Comments
 (0)