From 69d91c50800131e89a12ba655e0c435bce7f7118 Mon Sep 17 00:00:00 2001 From: ryounes Date: Thu, 7 Jul 2011 21:20:23 +0000 Subject: [PATCH] Correct name of class in error messages --- .../webapp/controller/grefine/JSONReconcileServletTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/test/edu/cornell/mannlib/vitro/webapp/controller/grefine/JSONReconcileServletTest.java b/webapp/test/edu/cornell/mannlib/vitro/webapp/controller/grefine/JSONReconcileServletTest.java index 17aab1fd8..926db6c3c 100644 --- a/webapp/test/edu/cornell/mannlib/vitro/webapp/controller/grefine/JSONReconcileServletTest.java +++ b/webapp/test/edu/cornell/mannlib/vitro/webapp/controller/grefine/JSONReconcileServletTest.java @@ -55,9 +55,9 @@ public class JSONReconcileServletTest extends AbstractTestClass { jsonResult = reconcile.getMetadata(request, response, defaultNamespace, defaultTypeList, serverName, serverPort); schemaSpaceOutput = jsonResult.getString("schemaSpace"); } catch (ServletException e) { - System.err.println("SolrJsonReconcileServletTest getMetadata ServletException: " + e); + System.err.println("JSONReconcileServletTest getMetadata ServletException: " + e); } catch (JSONException e) { - System.err.println("SolrJsonReconcileServletTest getMetadata JSONException: " + e); + System.err.println("JSONReconcileServletTest getMetadata JSONException: " + e); } Assert.assertNotNull("output should not be null", jsonResult); Assert.assertEquals("schemaSpaceOutput", defaultNamespace, schemaSpaceOutput); @@ -99,7 +99,7 @@ public class JSONReconcileServletTest extends AbstractTestClass { Assert.assertTrue(message, regexMatcher.find()); } catch (PatternSyntaxException e) { // Syntax error in the regular expression - System.err.println("SolrJsonReconcileServletTest testAssertTrue PatternSyntaxException: " + e); + System.err.println("JSONReconcileServletTest testAssertTrue PatternSyntaxException: " + e); } } }