mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
test: Fix copy-paste in db_tests ostream operator
This commit is contained in:
parent
5ea335a97f
commit
f50557f5d3
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ inline std::ostream& operator<<(std::ostream& os, const std::pair<const Serializ
|
|||
{
|
||||
Span key{kv.first}, value{kv.second};
|
||||
os << "(\"" << std::string_view{reinterpret_cast<const char*>(key.data()), key.size()} << "\", \""
|
||||
<< std::string_view{reinterpret_cast<const char*>(key.data()), key.size()} << "\")";
|
||||
<< std::string_view{reinterpret_cast<const char*>(value.data()), value.size()} << "\")";
|
||||
return os;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue