diff options
| -rw-r--r-- | test/verify_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc index 0b7faad5..0a9852ee 100644 --- a/test/verify_test.cc +++ b/test/verify_test.cc @@ -138,7 +138,9 @@ public: void replace (string a, string b) { + auto old_content = _content; boost::algorithm::replace_all (_content, a, b); + BOOST_REQUIRE (_content != old_content); } private: |
