Skip to content

Commit d81ad52

Browse files
Matthias WittgenMatthias Wittgen
authored andcommitted
Remove extra bracket
1 parent aaf34b9 commit d81ad52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/lsst/cpputils/tests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ constexpr bool HAS_STREAM_OUTPUT<
4747
// Conditional function templates reporting object values if possible
4848
template <typename T, class Hash>
4949
std::enable_if_t<HAS_STREAM_OUTPUT<T>> printIfHashEqual(T obj1, T obj2, Hash hash) {
50-
BOOST_TEST_REQUIRE((obj1 == obj2));
50+
BOOST_TEST_REQUIRE(obj1 == obj2);
5151
BOOST_TEST(hash(obj1) == hash(obj2),
5252
obj1 << " == " << obj2 << ", but " << hash(obj1) << " != " << hash(obj2));
5353
}

0 commit comments

Comments
 (0)