Skip to content

Commit

Permalink
Bump ABSL version to fix #41.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 478523114
  • Loading branch information
lszekeres authored and copybara-github committed Oct 3, 2022
1 parent 6a9f282 commit a1a7f03
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ http_archive(

http_archive(
name = "com_google_absl",
sha256 = "4208129b49006089ba1d6710845a45e31c59b0ab6bff9e5788a87f55c5abd602",
strip_prefix = "abseil-cpp-20220623.0",
url = "https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.0.tar.gz",
sha256 = "da79745569dd8767ebd8f738fd3eec55ccd23e45b0e680a7b5b6bab7624de77b",
strip_prefix = "abseil-cpp-6acb60c161f1203e6eca929b87f2041da7714bfe",
url = "https://github.com/abseil/abseil-cpp/archive/6acb60c161f1203e6eca929b87f2041da7714bfe.tar.gz",
)

http_archive(
Expand Down
6 changes: 3 additions & 3 deletions doc/quickstart-bazel.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ http_archive(
# Required by com_google_fuzztest.
http_archive(
name = "com_google_absl",
sha256 = "4208129b49006089ba1d6710845a45e31c59b0ab6bff9e5788a87f55c5abd602",
strip_prefix = "abseil-cpp-20220623.0",
url = "https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.0.tar.gz",
sha256 = "da79745569dd8767ebd8f738fd3eec55ccd23e45b0e680a7b5b6bab7624de77b",
strip_prefix = "abseil-cpp-6acb60c161f1203e6eca929b87f2041da7714bfe",
url = "https://github.com/abseil/abseil-cpp/archive/6acb60c161f1203e6eca929b87f2041da7714bfe.tar.gz",
)
# Required by com_google_absl.
Expand Down
2 changes: 1 addition & 1 deletion fuzztest/internal/type_support_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ TEST(MapTest, Printer) {
TestPrintValue(corpus_value, domain),
ElementsAre("\"bbb\"",
// Takes into account that `StringTimes` may appear mangled.
MatchesRegex(R"re(\w*StringTimes\w*\(3, 'b'\))re")));
MatchesRegex(R"re(StringTimes.*\(3, 'b'\))re")));

// Test fallback on user value when map involves a lambda.
EXPECT_THAT(TestPrintValue(std::tuple<int>(21), HexString()),
Expand Down

0 comments on commit a1a7f03

Please sign in to comment.