Skip to content

Commit f50557f

Browse files
committed
test: Fix copy-paste in db_tests ostream operator
1 parent 5ea335a commit f50557f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/test/db_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ inline std::ostream& operator<<(std::ostream& os, const std::pair<const Serializ
2828
{
2929
Span key{kv.first}, value{kv.second};
3030
os << "(\"" << std::string_view{reinterpret_cast<const char*>(key.data()), key.size()} << "\", \""
31-
<< std::string_view{reinterpret_cast<const char*>(key.data()), key.size()} << "\")";
31+
<< std::string_view{reinterpret_cast<const char*>(value.data()), value.size()} << "\")";
3232
return os;
3333
}
3434

0 commit comments

Comments
 (0)