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 53721200B44 for ; Thu, 30 Jun 2016 02:04:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5221E160A6E; Thu, 30 Jun 2016 00:04:41 +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 9A81B160A57 for ; Thu, 30 Jun 2016 02:04:40 +0200 (CEST) Received: (qmail 63306 invoked by uid 500); 30 Jun 2016 00:04:39 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 63290 invoked by uid 99); 30 Jun 2016 00:04:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Jun 2016 00:04:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5112CE5CE1; Thu, 30 Jun 2016 00:04:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ggregory@apache.org To: commits@commons.apache.org Message-Id: <2142fd3a394243e784b0be08f1dd60ec@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: commons-crypto git commit: Fix deprecation warning. Date: Thu, 30 Jun 2016 00:04:39 +0000 (UTC) archived-at: Thu, 30 Jun 2016 00:04:41 -0000 Repository: commons-crypto Updated Branches: refs/heads/master 9faf04e47 -> bd9dfcd71 Fix deprecation warning. Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/bd9dfcd7 Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/bd9dfcd7 Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/bd9dfcd7 Branch: refs/heads/master Commit: bd9dfcd71285868e0b23de3c22630cf585a9ee33 Parents: 9faf04e Author: Gary Gregory Authored: Wed Jun 29 17:03:16 2016 -0700 Committer: Gary Gregory Committed: Wed Jun 29 17:03:16 2016 -0700 ---------------------------------------------------------------------- .../org/apache/commons/crypto/jna/OpensslJnaCryptoRandomTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/bd9dfcd7/src/test/java/org/apache/commons/crypto/jna/OpensslJnaCryptoRandomTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/crypto/jna/OpensslJnaCryptoRandomTest.java b/src/test/java/org/apache/commons/crypto/jna/OpensslJnaCryptoRandomTest.java index 455bc28..159fada 100644 --- a/src/test/java/org/apache/commons/crypto/jna/OpensslJnaCryptoRandomTest.java +++ b/src/test/java/org/apache/commons/crypto/jna/OpensslJnaCryptoRandomTest.java @@ -26,7 +26,7 @@ import org.apache.commons.crypto.random.AbstractRandomTest; import org.apache.commons.crypto.random.CryptoRandom; import org.apache.commons.crypto.random.CryptoRandomFactory; -import static junit.framework.Assert.fail; +import static org.junit.Assert.fail; public class OpensslJnaCryptoRandomTest extends AbstractRandomTest {