Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 3FDD4200C6A for ; Wed, 19 Apr 2017 23:25:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 3E6A5160B9C; Wed, 19 Apr 2017 21:25:09 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7D007160B94 for ; Wed, 19 Apr 2017 23:25:08 +0200 (CEST) Received: (qmail 93694 invoked by uid 500); 19 Apr 2017 21:25:07 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 93683 invoked by uid 99); 19 Apr 2017 21:25:07 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Apr 2017 21:25:07 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 253333A002A for ; Wed, 19 Apr 2017 21:25:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1791980 - /httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/util/TestTimeValue.java Date: Wed, 19 Apr 2017 21:25:07 -0000 To: commits@hc.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170419212507.253333A002A@svn01-us-west.apache.org> archived-at: Wed, 19 Apr 2017 21:25:09 -0000 Author: ggregory Date: Wed Apr 19 21:25:06 2017 New Revision: 1791980 URL: http://svn.apache.org/viewvc?rev=1791980&view=rev Log: HTTPCORE-451: Add a TimeValue class to wrap a long and a TimeUnit. Fix test method name. Modified: httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/util/TestTimeValue.java Modified: httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/util/TestTimeValue.java URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/util/TestTimeValue.java?rev=1791980&r1=1791979&r2=1791980&view=diff ============================================================================== --- httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/util/TestTimeValue.java (original) +++ httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/util/TestTimeValue.java Wed Apr 19 21:25:06 2017 @@ -73,7 +73,7 @@ public class TestTimeValue { } @Test - public void test1Negative1() { + public void testNegative1() { test(-1); }