diff options
author | Abseil Team <absl-team@google.com> | 2023-02-06 18:59:27 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-02-06 19:00:05 (GMT) |
commit | 3d568bdda59a0b5e50d5f08038eb092b6d88e309 (patch) | |
tree | 0d826fdeb9db5d357e3e28748024d43ef46d5ccc /docs | |
parent | 2f2e72bae991138cedd0e3d06a115022736cd568 (diff) | |
download | googletest-3d568bdda59a0b5e50d5f08038eb092b6d88e309.zip googletest-3d568bdda59a0b5e50d5f08038eb092b6d88e309.tar.gz googletest-3d568bdda59a0b5e50d5f08038eb092b6d88e309.tar.bz2 |
Add support for the alternative base64 encoding in RFC 4648 section 5 to `WhenBase64Unescaped`.
PiperOrigin-RevId: 507527786
Change-Id: Ie5e088b1814981f6c760d7e25418a430172705ec
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/matchers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/matchers.md b/docs/reference/matchers.md index be96281..243e3f9 100644 --- a/docs/reference/matchers.md +++ b/docs/reference/matchers.md @@ -102,7 +102,7 @@ The `argument` can be either a C string or a C++ string object: | `StrCaseNe(string)` | `argument` is not equal to `string`, ignoring case. | | `StrEq(string)` | `argument` is equal to `string`. | | `StrNe(string)` | `argument` is not equal to `string`. | -| `WhenBase64Unescaped(m)` | `argument` is a base-64 escaped string whose unescaped string matches `m`. | +| `WhenBase64Unescaped(m)` | `argument` is a base-64 escaped string whose unescaped string matches `m`. The web-safe format from [RFC 4648](https://www.rfc-editor.org/rfc/rfc4648#section-5) is supported. | `ContainsRegex()` and `MatchesRegex()` take ownership of the `RE` object. They use the regular expression syntax defined |