Skip to content

Commit

Permalink
test: Fix copy-paste in db_tests ostream operator
Browse files Browse the repository at this point in the history
  • Loading branch information
hodlinator committed Oct 5, 2024
1 parent 5ea335a commit f50557f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/test/db_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit f50557f

Please sign in to comment.