diff options
author | Dan Goodliffe <daniel.goodliffe@pressassociation.com> | 2017-08-22 12:01:20 +0100 |
---|---|---|
committer | Dan Goodliffe <daniel.goodliffe@pressassociation.com> | 2017-08-22 12:01:20 +0100 |
commit | 6ba1d24e22bf90333aaf5d3d0f32f6165ee8cc02 (patch) | |
tree | 4659b41ac5274120f2c975b55d24d79b18494957 /libadhocutil/unittests/testFactory.cpp | |
parent | Fix FileHandle move constructor and bolster test coverage (diff) | |
download | libadhocutil-6ba1d24e22bf90333aaf5d3d0f32f6165ee8cc02.tar.bz2 libadhocutil-6ba1d24e22bf90333aaf5d3d0f32f6165ee8cc02.tar.xz libadhocutil-6ba1d24e22bf90333aaf5d3d0f32f6165ee8cc02.zip |
Prefer BOOST_REQUIRE_* comparisons
Diffstat (limited to 'libadhocutil/unittests/testFactory.cpp')
-rw-r--r-- | libadhocutil/unittests/testFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libadhocutil/unittests/testFactory.cpp b/libadhocutil/unittests/testFactory.cpp index 582ba51..10e2013 100644 --- a/libadhocutil/unittests/testFactory.cpp +++ b/libadhocutil/unittests/testFactory.cpp @@ -65,7 +65,7 @@ BOOST_AUTO_TEST_CASE( get ) BOOST_REQUIRE(factory1); BOOST_REQUIRE_EQUAL(factory1, factory2); BOOST_REQUIRE(factory3); - BOOST_REQUIRE(factory1 != factory3); + BOOST_REQUIRE_NE(factory1, factory3); } BOOST_AUTO_TEST_CASE( create ) |