Skip to content

Commit

Permalink
Fix descriptor_tests not checking ToString output of public descriptors
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanofsky committed Nov 27, 2018
1 parent b5c3d7a commit c77f092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/descriptor_tests.cpp
Expand Up @@ -62,7 +62,7 @@ void Check(const std::string& prv, const std::string& pub, int flags, const std:

// Check that both versions serialize back to the public version.
std::string pub1 = parse_priv->ToString();
std::string pub2 = parse_priv->ToString();
std::string pub2 = parse_pub->ToString();
BOOST_CHECK_EQUAL(pub, pub1);
BOOST_CHECK_EQUAL(pub, pub2);

Expand Down

0 comments on commit c77f092

Please sign in to comment.