From commits-return-9315-archive-asf-public=cust-asf.ponee.io@groovy.apache.org Fri Oct 11 07:56:42 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id C546918065C for ; Fri, 11 Oct 2019 09:56:41 +0200 (CEST) Received: (qmail 70901 invoked by uid 500); 11 Oct 2019 07:56:41 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 70860 invoked by uid 99); 11 Oct 2019 07:56:41 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Oct 2019 07:56:41 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A2907811C0; Fri, 11 Oct 2019 07:56:40 +0000 (UTC) Date: Fri, 11 Oct 2019 07:56:41 +0000 To: "commits@groovy.apache.org" Subject: [groovy] 02/02: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: sunlan@apache.org In-Reply-To: <157078059984.27648.2842871477445387446@gitbox.apache.org> References: <157078059984.27648.2842871477445387446@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: groovy X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: d0ed38a054a73e43d4e0e7529a88c767bf216039 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20191011075640.A2907811C0@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. sunlan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git commit d0ed38a054a73e43d4e0e7529a88c767bf216039 Author: Eric Milles AuthorDate: Fri Oct 4 11:31:01 2019 -0500 fix typo --- src/test/groovy/bugs/Groovy9244.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/groovy/bugs/Groovy9244.groovy b/src/test/groovy/bugs/Groovy9244.groovy index 3ce3235..b39c462 100644 --- a/src/test/groovy/bugs/Groovy9244.groovy +++ b/src/test/groovy/bugs/Groovy9244.groovy @@ -111,7 +111,7 @@ final class Groovy9244 { } def impl = new Base((String) null) {} - assert iompl.which == 'String' + assert impl.which == 'String' ''' } }