From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.7 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_PASS, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id DEE501F4B4 for ; Thu, 22 Oct 2020 05:54:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2503013AbgJVFyR (ORCPT ); Thu, 22 Oct 2020 01:54:17 -0400 Received: from mail-ej1-f68.google.com ([209.85.218.68]:34965 "EHLO mail-ej1-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2409013AbgJVFyR (ORCPT ); Thu, 22 Oct 2020 01:54:17 -0400 Received: by mail-ej1-f68.google.com with SMTP id p5so502166ejj.2 for ; Wed, 21 Oct 2020 22:54:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=Cp5esgrV3GiBHn4pxkyVB5CG1nvn79mi1rzCDtLr8GY=; b=JCx83dytHm3goTkNgfLO4QnzmzgcxppogTnPQOf94YufzxpOnwZHUNUAFvztpbBpAI 9/S5fkQb130fxzAE3L6JcarhxTUBSIRQDOWjzjOntKjwN1nYUp9d0cvPxCQyR4UliCyN VrFfoLO+UJk5W5LSgEsntqR9KKE3wxjXVJ2bomzZmpQ75T5UvGdOyyrA+/xC/5g3PHHz /rwbCj0bdODprbvWblSp3ISqdX1LmBd5HlN9IAgnkIh4cfoVrPxvdu4jSBnlffor5f54 N/38hCApj3bhmLNYD/6KO84qYY1TavwbLnCsO8uUrrdaA30F4FquKgs9l6LrfxXGy3wH Sanw== X-Gm-Message-State: AOAM531EK3Nj77TKqejdI8DI0D6TijgC38FrC+c4jcx+IGA8SNjd3al1 jKGXwQC2cLP4Uzud5/ttidU1P2ssVGr6TQn03gA= X-Google-Smtp-Source: ABdhPJwSY+ygTv47bUy/B6MZCeBy2pgRZxXi8NevV00pJD/sBbxapR3eWMQtG50ao3nqUSa0OqxBBbLqJp3G492rO/c= X-Received: by 2002:a17:906:f24b:: with SMTP id gy11mr779127ejb.371.1603346054244; Wed, 21 Oct 2020 22:54:14 -0700 (PDT) MIME-Version: 1.0 References: <20201020121152.21645-1-charvi077@gmail.com> <20201021124823.2217-1-charvi077@gmail.com> <20201021124823.2217-4-charvi077@gmail.com> In-Reply-To: From: Eric Sunshine Date: Thu, 22 Oct 2020 01:53:31 -0400 Message-ID: Subject: Re: [PATCH v5 3/5][Outreachy] t7102,t7201: remove whitespace after redirect operator To: Junio C Hamano Cc: Charvi Mendiratta , Git List , Christian Couder , Taylor Blau , Phillip Wood Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Thu, Oct 22, 2020 at 1:44 AM Junio C Hamano wrote: > Eric Sunshine writes: > > There's still a space after the '<<' operator which should be removed: > > > > cat >expect < > Also, this is outside any test_expect_*, which is unusual in > modernized test scripts. There are many other instances of > preparing expected output outside test_expect_* in this file, > so we may need another patch to clean them up. I noticed that, as well, but wasn't sure if mentioning it was worthwhile considering that this is a microproject and we're already at v5. It can certainly be addressed by someone as a follow-on patch if desired. > For now, within the context of this patch, let's just fix the space > after the << here-doc redirection operator, as you spotted. The > attached I'll squash into this patch. > > -cat >expect << EOF > +cat >expect <