Skip to content

Commit

Permalink
Update googleapi version to latest (#884)
Browse files Browse the repository at this point in the history
* Update googleapi version to latest

* fix integration test for updated googleapi version

* fix presubmit test
  • Loading branch information
siqidong authored Mar 6, 2024
1 parent 80493b2 commit 18e40d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bazel/googleapis.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def googleapis_repositories(bind = True):
http_archive(
name = "com_github_googleapis_googleapis",
strip_prefix = "googleapis-736857e7a655eea72322e078b1988bd0d25aae0f", # 10/19/2022
url = "https://github.com/googleapis/googleapis/archive/736857e7a655eea72322e078b1988bd0d25aae0f.tar.gz",
sha256 = "b165b0f397f143d2e09d22c51aa90028d24ac3b755a103688e7a49090993155f",
strip_prefix = "googleapis-792dacbd24643d8650fbf705b3f745532012ea34", # 03/05/2024
url = "https://github.com/googleapis/googleapis/archive/792dacbd24643d8650fbf705b3f745532012ea34.tar.gz",
sha256 = "7546ed2126b3cb08cc71ca22766cbb3e6ea425e6491dfafccac47500637b91ba",
)

if bind:
Expand Down
2 changes: 1 addition & 1 deletion tests/env/components/stats_verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (sv StatsVerifier) CheckExpectedCounters(wantCounters utils.StatCounters) e
if getCountVal, ok := counters[wantCounter]; !ok {
return fmt.Errorf("expected counter %v not in the got counters: %v", wantCounter, counters)
} else if getCountVal != wantCounterVal {
return fmt.Errorf("for counter %v, expected value %v:, got value: %v ", wantCounter, wantCounterVal, getCountVal)
return fmt.Errorf("for counter %v, expected value: %v, got value: %v ", wantCounter, wantCounterVal, getCountVal)
}
}

Expand Down

0 comments on commit 18e40d2

Please sign in to comment.