Removed trailing spaces
[libcds.git] / test / unit / map / test_michael_iterable_hp.h
index 36b93af0289a678a286555c4032ff1aa867a117f..c5c860375403c89d7eab3b6ee62867481794c8e2 100644 (file)
@@ -136,15 +136,15 @@ namespace cds_test {
 
             // erase_at()
             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 );
 
             for ( auto it = m.begin(); it != m.end(); ++it ) {
                 EXPECT_TRUE( m.erase_at( it ));
                 EXPECT_FALSE( m.erase_at( it ));
             }
-            EXPECT_TRUE( m.empty() );
+            EXPECT_TRUE( m.empty());
             EXPECT_CONTAINER_SIZE( m, 0u );
         }
     };