Skip to content

Commit 5695ef1

Browse files
Fix CQS signal. Id] 29511954 -- readability-redundant-string-init in fbcode/pytorch/tokenizers
Differential Revision: D73434458 Pull Request resolved: #57
1 parent ffd4749 commit 5695ef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_base64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ TEST(Base64Test, TestDecodeSmoke) {
1919
}
2020

2121
TEST(Base64Test, TestDecodeEmptyStringReturnsError) {
22-
std::string text = "";
22+
std::string text;
2323
auto result = base64::decode(text);
2424
EXPECT_FALSE(result.ok());
2525
EXPECT_EQ(result.error(), Error::Base64DecodeFailure);

0 commit comments

Comments
 (0)