Return-Path: X-Original-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Delivered-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C6E641831C for ; Wed, 29 Apr 2015 10:26:36 +0000 (UTC) Received: (qmail 46766 invoked by uid 500); 29 Apr 2015 10:26:36 -0000 Delivered-To: apmail-commonsrdf-commits-archive@commonsrdf.apache.org Received: (qmail 46739 invoked by uid 500); 29 Apr 2015 10:26:36 -0000 Mailing-List: contact commits-help@commonsrdf.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commonsrdf.incubator.apache.org Delivered-To: mailing list commits@commonsrdf.incubator.apache.org Received: (qmail 46730 invoked by uid 99); 29 Apr 2015 10:26:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Apr 2015 10:26:36 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [54.76.25.247] (HELO mx1-eu-west.apache.org) (54.76.25.247) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Apr 2015 10:26:11 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with SMTP id 919CF2AB75 for ; Wed, 29 Apr 2015 10:24:49 +0000 (UTC) Received: (qmail 74018 invoked by uid 99); 29 Apr 2015 10:00:25 -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; Wed, 29 Apr 2015 10:00:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 38C63E09B2; Wed, 29 Apr 2015 10:00:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stain@apache.org To: commits@commonsrdf.incubator.apache.org Date: Wed, 29 Apr 2015 10:00:29 -0000 Message-Id: In-Reply-To: <0313764916064705b1cb61d8a2e9f8e4@git.apache.org> References: <0313764916064705b1cb61d8a2e9f8e4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/13] incubator-commonsrdf git commit: Remove (now) irrelevant comments X-Virus-Checked: Checked by ClamAV on apache.org Remove (now) irrelevant comments Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/97bec03d Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/97bec03d Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/97bec03d Branch: refs/heads/master Commit: 97bec03d3fa95438be14ac15377afde036f5947f Parents: 08c9f91 Author: Stian Soiland-Reyes Authored: Fri Apr 24 11:50:00 2015 +0100 Committer: Stian Soiland-Reyes Committed: Fri Apr 24 11:50:00 2015 +0100 ---------------------------------------------------------------------- .../commons/rdf/api/AbstractRDFTermFactoryTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/97bec03d/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java ---------------------------------------------------------------------- diff --git a/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java b/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java index 99a7e0a..e4561c4 100644 --- a/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java +++ b/api/src/test/java/org/apache/commons/rdf/api/AbstractRDFTermFactoryTest.java @@ -17,12 +17,15 @@ */ package org.apache.commons.rdf.api; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotEquals; +import static org.junit.Assert.assertNotSame; + import org.junit.Assume; import org.junit.Before; import org.junit.Test; -import static org.junit.Assert.*; - /** * Test RDFTermFactory implementation (and thus its RDFTerm implementations) *

@@ -85,9 +88,6 @@ public abstract class AbstractRDFTermFactoryTest { Assume.assumeNoException(ex); return; } - // We can't assume anything about the resulting bnode - // assertEquals("example1", bnode.internalIdentifier()); - // assertEquals("_:example1", bnode.ntriplesString()); } @Test