about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--t/v1-add-remove-add.t2
-rw-r--r--t/v2-add-remove-add.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/v1-add-remove-add.t b/t/v1-add-remove-add.t
index 2867bb94..736e414e 100644
--- a/t/v1-add-remove-add.t
+++ b/t/v1-add-remove-add.t
@@ -28,7 +28,7 @@ my $mime = PublicInbox::MIME->create(
 );
 my $im = PublicInbox::Import->new($ibx->git, undef, undef, $ibx);
 ok($im->add($mime), 'message added');
-ok($im->remove($mime), 'message added');
+ok($im->remove($mime), 'message removed');
 ok($im->add($mime), 'message added again');
 $im->done;
 my $rw = PublicInbox::SearchIdx->new($ibx, 1);
diff --git a/t/v2-add-remove-add.t b/t/v2-add-remove-add.t
index c427de6e..328f5326 100644
--- a/t/v2-add-remove-add.t
+++ b/t/v2-add-remove-add.t
@@ -29,7 +29,7 @@ my $mime = PublicInbox::MIME->create(
 my $im = PublicInbox::V2Writable->new($ibx, 1);
 $im->{parallel} = 0;
 ok($im->add($mime), 'message added');
-ok($im->remove($mime), 'message added');
+ok($im->remove($mime), 'message removed');
 ok($im->add($mime), 'message added again');
 $im->done;
 my $msgs = $ibx->recent({limit => 1000});