Removed redundant spaces
[libcds.git] / test / unit / map / test_michael_iterable_hp.h
index eecc1156ca1dbb6b464b488ebc780f4df7c72e46..f8f2e867c9335ffe024b2237eaed9a467da3b0e5 100644 (file)
@@ -67,8 +67,8 @@ namespace cds_test {
             }
 
             for ( auto const& i : arrKeys )
-                EXPECT_TRUE( m.insert( i ) );
-            EXPECT_FALSE( m.empty() );
+                EXPECT_TRUE( m.insert( i ));
+            EXPECT_FALSE( m.empty());
             EXPECT_CONTAINER_SIZE( m, kkSize );
 
             // iterators
@@ -128,10 +128,10 @@ namespace cds_test {
                 ASSERT_TRUE( !gp );
                 gp = m.get( i );
                 ASSERT_TRUE( !gp );
-                gp = m.get_with( other_item( i.nKey ), other_less() );
+                gp = m.get_with( other_item( i.nKey ), other_less());
                 ASSERT_TRUE( !gp );
             }
-            EXPECT_TRUE( m.empty() );
+            EXPECT_TRUE( m.empty());
             EXPECT_CONTAINER_SIZE( m, 0u );
         }
     };