You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2021/01/17 02:38:18 UTC

[zeppelin] branch branch-0.9 updated: [Hotfix] Fix check style of SparqlJenaEngineTest

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

zjffdu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new a6e40ac  [Hotfix] Fix check style of SparqlJenaEngineTest
a6e40ac is described below

commit a6e40ac7813b543e6b4d7d068af45f510dba9a1b
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Sun Jan 17 10:37:28 2021 +0800

    [Hotfix] Fix check style of SparqlJenaEngineTest
---
 .../src/test/java/org/apache/zeppelin/sparql/SparqlJenaEngineTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sparql/src/test/java/org/apache/zeppelin/sparql/SparqlJenaEngineTest.java b/sparql/src/test/java/org/apache/zeppelin/sparql/SparqlJenaEngineTest.java
index 3e46398..62af9a4 100644
--- a/sparql/src/test/java/org/apache/zeppelin/sparql/SparqlJenaEngineTest.java
+++ b/sparql/src/test/java/org/apache/zeppelin/sparql/SparqlJenaEngineTest.java
@@ -172,7 +172,8 @@ public class SparqlJenaEngineTest {
     final InterpreterResult result = interpreter.interpret(query, null);
     assertEquals(Code.SUCCESS, result.code());
 
-    final String expected = "?athlete\n<http://dbpedia.org/resource/Category:git Cristiano_Ronaldo>\n";
+    final String expected =
+            "?athlete\n<http://dbpedia.org/resource/Category:git Cristiano_Ronaldo>\n";
     assertEquals(expected, result.message().get(0).getData());
   }