]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
test_cls_log.cc: remove empty lines
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Thu, 25 Jul 2013 22:39:29 +0000 (00:39 +0200)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Fri, 26 Jul 2013 21:55:49 +0000 (23:55 +0200)
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
src/test/cls_log/test_cls_log.cc

index a8d1b3d53007b92d067b7e7e9889bf1327c4784a..090490d99a99762c40384ffd97f0f5cd35697c0e 100644 (file)
@@ -118,14 +118,10 @@ TEST(cls_rgw, test_log_add_same_time)
   /* add chains */
   string oid = "obj";
 
-
   /* create object */
-
   ASSERT_EQ(0, ioctx.create(oid, true));
 
-
   /* generate log */
-
   utime_t start_time = ceph_clock_now(g_ceph_context);
   generate_log(ioctx, oid, 10, start_time, false);
 
@@ -206,14 +202,10 @@ TEST(cls_rgw, test_log_add_different_time)
   /* add chains */
   string oid = "obj";
 
-
   /* create object */
-
   ASSERT_EQ(0, ioctx.create(oid, true));
 
-
   /* generate log */
-
   utime_t start_time = ceph_clock_now(g_ceph_context);
   generate_log(ioctx, oid, 10, start_time, true);
 
@@ -227,7 +219,6 @@ TEST(cls_rgw, test_log_add_different_time)
   string marker;
 
   /* check list */
-
   cls_log_list(*rop, start_time, to_time, marker, 0, entries, &marker, &truncated);
 
   bufferlist obl;
@@ -258,7 +249,6 @@ TEST(cls_rgw, test_log_add_different_time)
   reset_rop(&rop);
 
   /* check list again with shifted time */
-
   utime_t next_time = get_time(start_time, 1, true);
 
   marker.clear();
@@ -305,14 +295,10 @@ TEST(cls_rgw, test_log_trim)
   /* add chains */
   string oid = "obj";
 
-
   /* create object */
-
   ASSERT_EQ(0, ioctx.create(oid, true));
 
-
   /* generate log */
-
   utime_t start_time = ceph_clock_now(g_ceph_context);
   generate_log(ioctx, oid, 10, start_time, true);