Skip to content

Commit 6e45409

Browse files
Fix: fixed bug in go example (#1595)
Fix minor bug
1 parent 19ce626 commit 6e45409

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/go-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
matrix:
3838
os:
3939
- ubuntu
40-
go-version: [1.17.6, 1.16.13]
40+
go-version: [1.23.0, 1.24.4]
4141

4242
steps:
4343
- name: Cancel Previous Runs
@@ -165,7 +165,7 @@ jobs:
165165
- name: Install Go ${{ matrix.go-version }}
166166
uses: actions/setup-go@v5
167167
with:
168-
go-version: 1.17.6
168+
go-version: 1.23.0
169169
check-latest: true
170170

171171
- name: Install dependencies

go/example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func printAboutMe(sdk *v4.LookerSDK) {
4848
fmt.Printf("Error getting myself %v\n", err)
4949
}
5050
if len(users) != 1 {
51-
fmt.Printf("Found %d users with my email expected 1\n")
51+
fmt.Printf("Found %d users with my email expected 1\n", len(users))
5252
}
5353
}
5454

0 commit comments

Comments
 (0)