From b3f81ce0c71d5d4eca347f259b5ae69660a2cb13 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 19 Apr 2020 15:27:08 -0400 Subject: [PATCH] t/v*-add-remove-add: fix typo in description of 'removed' check --- t/v1-add-remove-add.t | 2 +- t/v2-add-remove-add.t | 2 +- 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}); -- 2.44.0