You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/11/04 12:58:18 UTC

(commons-rdf) branch master updated: Normalize test method names

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rdf.git


The following commit(s) were added to refs/heads/master by this push:
     new 0ed64508 Normalize test method names
0ed64508 is described below

commit 0ed6450849d1712f3b1cab0d9328a086be994c69
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 4 08:58:14 2023 -0400

    Normalize test method names
---
 commons-rdf-examples/src/example/UserGuideTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-rdf-examples/src/example/UserGuideTest.java b/commons-rdf-examples/src/example/UserGuideTest.java
index 48d26a0b..f5dcffe7 100644
--- a/commons-rdf-examples/src/example/UserGuideTest.java
+++ b/commons-rdf-examples/src/example/UserGuideTest.java
@@ -128,7 +128,7 @@ public class UserGuideTest {
     }
 
     @Test
-    public void triple() throws Exception {
+    public void testTriple() throws Exception {
         BlankNodeOrIRI subject = factory.createBlankNode();
         IRI predicate = factory.createIRI("http://example.com/says");
         RDFTerm object = factory.createLiteral("Hello");