Skip to content

Commit 43f464a

Browse files
Automated Code Change
PiperOrigin-RevId: 811768733
1 parent 488c81b commit 43f464a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_serving/servables/hashmap/hashmap_source_adapter_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ absl::Status WriteHashmapToFile(const HashmapSourceAdapterConfig::Format format,
5454
for (const auto& entry : hashmap) {
5555
const string& key = entry.first;
5656
const string& value = entry.second;
57-
const string line = strings::StrCat(key, ",", value, "\n");
57+
const string line = absl::StrCat(key, ",", value, "\n");
5858
TF_RETURN_IF_ERROR(file->Append(line));
5959
}
6060
break;

0 commit comments

Comments
 (0)