From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id B83701FA29 for ; Tue, 17 Jan 2023 07:19:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1673939951; bh=AR2qBmiN5YZ2Clspile3IEb1aNWuI32K/JEmxHTnHUQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=izxyqfCfdxJst21PBUYM5tTF/2T7islhbAi6XWzcD0H37GW4oMxuzMI2gMsPXX6HW YLW+LfAk4kzkunKqE3SuI0VFEjAOjoGZZA5bJVy74sjYJJGouF3sYGwzhrdQRxr+PL foF+pEvhGdZGo32JFkcbRU5BJMaliiqaCk/0QR4I= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 02/12] t/solver_git.t: fix test message Date: Tue, 17 Jan 2023 07:19:01 +0000 Message-Id: <20230117071911.1577890-3-e@80x24.org> In-Reply-To: <20230117071911.1577890-1-e@80x24.org> References: <20230117071911.1577890-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: --- t/solver_git.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/solver_git.t b/t/solver_git.t index 8faa7309..06d75816 100644 --- a/t/solver_git.t +++ b/t/solver_git.t @@ -293,7 +293,7 @@ EOF is($res->code, 404, 'failure with null OID'); $res = $cb->(GET("/$name/$non_existent/s/")); - is($res->code, 404, 'failure with null OID'); + is($res->code, 404, 'failure with non-existent OID'); $res = $cb->(GET("/$name/$v1_0_0_tag/s/")); is($res->code, 200, 'shows commit (unabbreviated)');