summaryrefslogtreecommitdiff
path: root/src/crypto/base64/base64_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/base64/base64_test.cc')
-rw-r--r--src/crypto/base64/base64_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/base64/base64_test.cc b/src/crypto/base64/base64_test.cc
index 108c7829..28b5c8e0 100644
--- a/src/crypto/base64/base64_test.cc
+++ b/src/crypto/base64/base64_test.cc
@@ -280,9 +280,9 @@ TEST_P(Base64Test, DecodeUpdateStreaming) {
out_len += bytes_written;
if (i == encoded_len ||
(i + 1 == encoded_len && t.encoded[i] == '\n') ||
- /* If there was an '-' in the input (which means “EOF”) then
- * this loop will continue to test that |EVP_DecodeUpdate| will
- * ignore the remainder of the input. */
+ // If there was an '-' in the input (which means “EOF”) then
+ // this loop will continue to test that |EVP_DecodeUpdate| will
+ // ignore the remainder of the input.
strchr(t.encoded, '-') != nullptr) {
break;
}